Fullcalendar不在月视图中显示事件
以下是我的工作在周视图中选择2014年12月30日的上午12点的时间段,然后选择2015年1月1日的结束时间。 事件已成功创建并以周视图显示。 现在,当我切换到月视图事件时,仅在12月30日显示。切换回周视图可以正确保留事件,即使在页面刷新时周视图也能正常工作,但月视图无法工作。
我使用Fullcalendar 1.6.1版本。 http://fullcalendar.io/
代码部分
var day = new Date();
$("#calendar").fullCalendar({
editable: true,
events: events_list,
//Adjusts ratio of calendar and makes it taller. Default is 1.35
aspectRatio: 1.265,
header: {
right: "agendaDay,agendaWeek,month",
center: "title",
left: "prev,next today"
},
defaultView: 'agendaWeek',
allDaySlot: true,
axisFormat: 'h(:mm)tt',
slotMinutes: 15
})
fullcalendar.js https://gist.github.com/1533e07d93f308a6b6b0.git
链接地址: http://www.djcxy.com/p/81187.html上一篇: Fullcalendar not showing events in month view
下一篇: Change default event sort order on FullCalendar month View