Ich habe die Dokumentation durchsucht und nichts über das Verknüpfen einer FullCalendar-Ressource mit Ereignisquellen aus Google Kalender gefunden.Wie verknüpfe ich FullCalendar-Ressourcen mit EventSources aus Google Kalender?
Dies ist der entsprechende Code:
resources: [
{ id: 'room01', title: 'Room 1' },
{ id: 'room02', title: 'Room 2' },
{ id: 'room03', title: 'Room 3' },
{ id: 'room04', title: 'Room 4' }
],
eventSources: [
{
id: 'e1',
resourceId: 'room01',
googleCalendarId: '[GOOGLE CALENDAR ID #1]'
},
{
id: 'e2',
resourceId: 'room02',
googleCalendarId: '[GOOGLE CALENDAR ID #2]'
}
],
Bitte helfen :-)