我正在尝试设置我的fullCalendar事件源。 而不是通过1个来源拉我的所有事件,我想使用多个来源(即:谷歌和本地json)
以下是我到目前为止 (简称) :
eventSources:
[
//CA HOLIDAYS
$.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/en.canadian%23holiday%40group.v.calendar.google.com/public/basic', { className: 'holiday' }),
//General events
'events.php?a=getAllCalendarEvents'
],
我遇到的问题是,我可以让gCalFeed拥有一个className,但不确定如何让我的其他源拥有className ...
任何想法都将不胜感激。
答案 0 :(得分:0)
唯一的另一种方法是为每个事件对象单独设置一个'className'属性。
将源的className设置为一个高级属性会很好。请随时申请此功能(http://arshaw.com/fullcalendar/support/)
答案 1 :(得分:0)
您可以尝试将className
添加到整个eventSource
eventSources:
[
//CA HOLIDAYS
$.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/en.canadian%23holiday%40group.v.calendar.google.com/public/basic', { className: 'holiday' }),
//General events
{
events: 'events.php?a=getAllCalendarEvents',
className: 'GeneralEvents'
}
],