1
我有jquery fullcalendar目前工作相當好,但是,我已經添加了一些選項讓用戶能夠過濾顯示的事件。我使用的方法只是使用AJAX檢索要在日曆中使用的新數據,清空現有日曆並嘗試用新數據重建日曆。FullCalendar - 通過jQuery和AJAX更新事件
目前發生的事情是,在頁面加載時,日曆會正確加載事件 - 當我點擊過濾器時,它會清空日曆中的當前事件,但不加載任何新事件,即使我可以看到AJAX調用中返回的JSON包含格式正確的事件數據。
這裏可能存在一個明顯的錯誤,或者使用內置方法執行此操作的更簡單的方法。任何幫助非常感謝!
// Store json encoded data in variable
var data = <?php echo $events_json ?>;
// Pass data to the calendar loader
loadCal(data);
// Filter event handler
$('ul#calendar_filters li a').click(function(){
// Retrieve data - have checked this is correctly formatted
new_data = $.get($(this).attr('href'));
// Empty the calendar of existing data
$('#calendar').empty();
// Reload calendar with new data set
loadCal(new_data);
return false;
});
function loadCal(data)
{
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
events: data,
eventRender: function(event, element) {
element.qtip({
content: {
text: formatEvent(event),
title: {
text: event.title,
button: true
}
},
show: {
event: 'click', // Show it on click...
solo: true // ...and hide all other tooltips...
},
hide: false,
style: {
classes: 'ui-tooltip-light ui-tooltip-shadow ui-tooltip-rounded'
}
});
}
});
}