我已将 fullcalendar 放置在基于jqwidgets的选项卡内。
当我单击所选选项卡时,会显示第一行按钮,但不会显示日历本身。一旦您单击顶行按钮之一,日历就会显示。
我已经阅读了这里有关如何使用标准 ui.tabs 组件执行此操作的其他帖子,并尝试了它,但它不起作用。这是我所拥有的:
<script type="text/javascript">
jQuery(document).ready(function () {
var theme = '';
// Create jqxTabs.
jQuery('#classInfo').jqxTabs({
width: "100%",
height: "1000px",
autoHeight: false,
position: 'top',
theme: theme,
show: function(event, ui) {
jQuery('#classcalendar').fullCalendar('render');
}
});
jQuery('#settings div').css('margin-top', '10px');
});
</script>
谢谢