Fullcalendar在月份模式下无法正确显示事件

时间:2014-12-05 23:20:27

标签: fullcalendar

我的fullcalendar有问题,我有一个事件发生在第3天和第4天,当事件在上午9点结束,月模式只显示一天,看:

周:(在上午9点之前结束)

enter image description here

月:

enter image description here

周:(早上9点结束)

enter image description here

月:

enter image description here

我是如何解决的?我想在两个月的月份都展示这个活动。

1 个答案:

答案 0 :(得分:1)

您需要将nextDayThreshold属性更改为另一个小时,以便根据您的需要显示该事件。

来自文档:

  

当一个事件的结束时间跨越另一天时,它必须达到的最短时间才能呈现,就好像它在当天一样。

     

持续时间,默认:“09:00:00”(上午9点)

     

仅影响全天出现的定时事件。全天细胞   发生在月视图,basicDay,basicWeek和全天候的插槽中   议程观点。

示例(docs)

{ start: '2014-02-04T20:00:00', end: '2014-02-05T02:00:00' }
// goes from 8pm to 2am the next day

更多信息: http://fullcalendar.io/docs/event_rendering/nextDayThreshold/