我正在尝试在FullCalendar Scheduler(http://fullcalendar.io/scheduler/(中为每个资源集成一个Google日历
我目前有:
googleCalendarApiKey: 'MYAPIKEY',
resourceGroupField: 'level',
resources: [
{ id: 'a', level: 'Level A', title: 'Room 3' },
{ id: 'b', level: 'Level B', title: 'Room 2' }
],
eventSources: [
{ id: '1', googleCalendarId: 'blahblah2@group.calendar.google.com', resourceId: 'a' },
{ id: '2', googleCalendarId: 'blahblah2@group.calendar.google.com', resourceId: 'b' }
]
});
这真的只是一个猜测....
计划程序正确呈现,但事件不会填充。具有单个googlecalendarid的普通FullCalendar视图工作正常。
但这个想法是,我会有一个谷歌日历,将事件输入到调度程序议程视图中的每个资源中。有什么建议吗?我找不到明确的文档,所以也许它还没有实现。但是,将不胜感激!
我在这里找到了答案:https://github.com/fullcalendar/fullcalendar/issues/3020
似乎尚未合并,但是可以确认添加
resourceId: sourceOptions.resourceId
对于 gcal 的第 153 行.js使这项工作成为一种享受:D