当用户更改日期时,我需要以dinamically方式更改agendaDay的minTime属性。我试过这个:
dayRender: function(event, element, view) {
$('#calendar').fullCalendar('getView').calendar.options.minTime = '10:35:00';
//$('#calendar').fullCalendar('render');
}
价值' 10:35:00'这只是一个例子,因为我的应用程序根据所选日期从数据库中获取实际值。当我取消注释行$('#calendar').fullCalendar('render');
时,由于出现错误而导致页面变为白色,我想。我也尝试$('#calendar').fullCalendar('destroy');
但没有结果,并出现相同的错误。
当用户更改日期时刷新视图的正确方法是什么?
答案 0 :(得分:0)
初始化完成后,您只能更改'contentHeight','height','aspectRatio',因此您必须销毁日历然后重建