fullcalendar不能从json拖放事件

时间:2012-02-20 05:40:04

标签: jquery fullcalendar

我可以在“事件:”中拖放手动事件 - 但不是当它们来自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'
            ]

    });

0 个答案:

没有答案
相关问题