我可以在“事件:”中拖放手动事件 - 但不是当它们来自json提要时:( BasicEvents是一个json提要,它们显示正常)
使用fullcalendar 1.5.3,jquery 1.7.1,jqueryui 1.8.17
任何想法?
$("#btbasic").click(function (e) {
$('#calendar').empty();
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
events: [
{
title: 'All Day Event',
start: new Date(y, m, 1)
},
],
eventSources:
[
'BasicEvents'
]
});