更新新版本后,我对 fullCalendar 有一些问题。如果活动的结束时间早于上午 9 点,则活动的最后一天将被削减。
我的全日历初始化:
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: ''
},
editable: false,
events: [
{
"title":"normal 3 days event",
"start":"2015-04-13T08:00:00",
"end":"2015-04-15T09:00:00"},
{
"title":"cutted 3 days event",
"start":"2015-04-19T01:00:00",
"end":"2015-04-21T08:00:00"}],
timeFormat: ' '//for hiding of event's start time
});
另外,我提供 2 个事件的小提琴。第一个结束时间晚于上午 8 点并且工作正常,第二个被切断。
我认为问题出在时区上,并尝试添加时区:"UTC",但这对我无济于事。
这与 nextDayThreshold 有关,与时区无关。默认情况下,如果多日事件在 09:00 之前结束,则不显示。如果要显示每个事件,只需将其设置为
00:00:00。$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month, agendaWeek' //You can check it adding new views
},
editable: false,
nextDayThreshold : "00:00:00", //Add this line
events: [{"title":"New Franchisee Training","location":"Hastings, MN","start":"2015-05-11T08:00:00","end":"2015-05-15T11:00:00","color":""},{"title":"Vitals Training","location":"PL","start":"2015-05-19T01:00:00","end":"2015-05-21T05:00:00","color":""}],
timeFormat: ' ',
timezone: 'UTC'
});
我已经叉了你的小提琴。我还为不同的视图添加了按钮,因此您可以轻松检查它。