FullCalendar 长事件不会像 allDay 事件一样显示在顶部
FullCalendar long events are not shown on the top as allDay events
event.start=obj.expected_start;
event.end=obj.expected_end;
format of expected_start: 2015-08-07 22:36:00
长事件呈现为占用整个日历高度的正常事件。
有什么想法吗?
来自Docs:
allDay
true or false. Optional.
Whether an event occurs at a specific time-of-day. This property
affects whether an event's time is shown. Also, in the agenda views,
determines if it is displayed in the "all-day" section.
If this value is not explicitly specified, allDayDefault will be used
if it is defined.
If all else fails, FullCalendar will try to guess. If either the start
or end value has a "T" as part of the ISO8601 date string, allDay will
become false. Otherwise, it will be true.
Don't include quotes around your true/false. This value is a boolean,
not a string!
allDay 时段用于没有时间属性的事件:
即 "2015-08-11" - "2015-08-14"
而不是 "2015-08-11T09:45:40" - "2015-08-11T11:45:40"
与起点和终点的距离大小无关
event.start=obj.expected_start;
event.end=obj.expected_end;
format of expected_start: 2015-08-07 22:36:00
长事件呈现为占用整个日历高度的正常事件。
有什么想法吗?
来自Docs:
allDay
true or false. Optional.
Whether an event occurs at a specific time-of-day. This property affects whether an event's time is shown. Also, in the agenda views, determines if it is displayed in the "all-day" section.
If this value is not explicitly specified, allDayDefault will be used if it is defined.
If all else fails, FullCalendar will try to guess. If either the start or end value has a "T" as part of the ISO8601 date string, allDay will become false. Otherwise, it will be true.
Don't include quotes around your true/false. This value is a boolean, not a string!
allDay 时段用于没有时间属性的事件:
即 "2015-08-11" - "2015-08-14"
而不是 "2015-08-11T09:45:40" - "2015-08-11T11:45:40"
与起点和终点的距离大小无关