JQuery Full calender基本周视图事件排序

时间:2016-07-11 05:58:22

标签: javascript php jquery

我使用了jquery fullcalender和basicWeek视图,但我也想做一天的事件排序,也可以帮我解决这些问题。

我在jquery中使用了这些代码

$('#calendar').fullCalendar({
            header: {
                left: 'prev,next today',
                center: 'title',
                right: 'agendaWeek'

            },
                        defaultView: 'basicWeek',
            editable: true,
            droppable: true, // this allows things to be dropped onto the calendar
            draggable: true,// this allows things to be draggable onto the calendar
                        editable: true,
            //dragRevertDuration: 0,
            drop: function() {
            },
            eventDragStop: function( event, jsEvent, ui, view ) {

                    }
    });

但是在这里我无法对事件进行排序,请为我提供使用默认周视图进行排序的解决方案。

0 个答案:

没有答案