我使用FullCalendar和'allDay'活动的ajax请求
并在月视图中将事件限制设置为每天“8”(eventLimit = 8)
日历显示“更多”按钮,其中包含更多活动
但是当点击“更多”时,它不会在弹出窗口中显示任何事件
点击“更多”的结果附于下方......(http://i.stack.imgur.com/PJw0e.png)
请帮助,非常感谢。
[编辑:1我试图改变allDay = false,但结果也是一样的......]
$('#calendar').fullCalendar({
editable: true,
droppable: true,
dragOpacity: {
agenda: .5
},
selectable: true,
events: {
url: 'xxxx.php',![enter image description here][1]
type: 'POST',
error: function(){
alert('event fetch error');
}
},
eventLimit:{
'agenda': 3, // adjust to 6 only for agendaWeek/agendaDay
'default': true // give the default value to other views
}
}
});
答案 0 :(得分:1)
好的,我自己解决了
将事件定义为'allDay'和'end'日期的问题原因。
然后我从事件的数据中删除'结束'日期,没关系。