Fullcalendar popover为空(使用eventLimit)

时间:2014-11-05 16:39:39

标签: javascript jquery fullcalendar popover

当我点击“+ x events”时,我一直在努力理解为什么popover显示为空。

我创建了一个jsfiddle,其中我重现了错误。我使用debug template作为此测试的基础。

$('#calendar').fullCalendar({
    eventLimit: 5, //or any truthy value
    ...
});

1 个答案:

答案 0 :(得分:1)

看了之后,我想通了。使用版本2.1.1的fullCalendar时,必须使用moment个对象设置开始(和/或)结束。然后事件出现在popover中。

宣布活动的正确方法:

events: [
    {   
        start:moment('2014-11-06 22:00','YYYY-MM-DD HH:mm'),
        end:moment('2014-11-06 23:00','YYYY-MM-DD HH:mm'),
        title:'Test',
        allDay:false
    }]