我可以使用gcal Google Calendar与FullCalendar Scheduler中的资源集成吗?

时间:2016-02-16 22:02:17

标签: fullcalendar google-calendar-api scheduler

我尝试在FullCalendar计划程序(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视图可以正常工作。

但我的想法是,我会在调度程序议程视图中为每个资源提供一个Google日历。任何建议?我无法找到明确的文档,所以可能还没有实现。非常感谢你的工作!

1 个答案:

答案 0 :(得分:0)

我在这里找到答案:https://github.com/fullcalendar/fullcalendar/issues/3020

似乎尚未合并,但可以确认添加

resourceId: sourceOptions.resourceId

到gcal.js的第153行使这项工作成为一种享受:D