I have a functional fullCalendar http://arshaw.com/fullcalendar/ that works with a single source from Google Calendar for events like this:
$('#calendar').fullCalendar({ events: $.fullCalendar.gcalFeed( "http://www.google.com/calendar/feeds/etc", // feed URL { className: 'gcal-events' } // optional options ) });
However, my task is to add multiple channels. The fullCalendar documentation says:
eventSources: Array Like the "event" parameters, except for one, you can specify multiple sources. For example, you can specify an array of JSON URLs, an array of user-defined functions, an array of hard-coded event arrays, or any combination.
But there is no example, so this new JSON newbie is a bit stuck.
Any ideas on what would need to use eventSources and an array of channels?
jquery fullcalendar
willdanceforfun
source share