我有一个包括部分或全部周末的活动。我在月视图中显示日历。但是,我可以在一周中的多天跨越一个事件就好了。
我正在使用以下脚本:
- jquery-1.8.0.min.js:
- jquery-ui-1.8.23.min.js:
- fullcalendar.min.js
我的日历设置为:
$('#calendar').fullCalendar({
theme: true,
defaultView: "month",
firstDay: 7,
weekends: true,
events: Controller/GetEvents
});
错误(周末)的事件数据设置为:
id: 1
title: "Kat's Test Event"
allDay: true
start: 1348902000
end: 1348988400
url: myUrl
editable: false
这会"Invalid argument"
在该行的 fullcalendar.min.js 中引发错误:
n[0].style.top = C[B.row] + (B.top || 0) + "px"
据我所知,B.top = -Infinity。
有效的事件数据(周)设置为:
id: 1
title: "Kat's Test Event"
allDay: true
start: 1348556400
end: 1348729200
url: myUrl
editable: false
谁能告诉我如何解决这个问题?