Issue 104: Multiple Google Calendars
Status:  Done
Owner: ----
Closed:  Sep 2009
Reported by raynes....@gmail.com, Sep 23, 2009
Is there a way to include multiple google calendars - each with their own
options?
Sep 23, 2009
#1 raynes....@gmail.com
really sorry - just found it!

great script btw.
Sep 24, 2009
Project Member #2 adamrs...@gmail.com
glad you got it to work.
for those having the same issue, use the 'eventSources' option, as described in the 
docs.
Status: Done
Oct 6, 2009
#3 charlesm...@gmail.com
Could you please post an example where the gcalFeed() function is used with the
eventSources option? 

I've been struggling to get multiple google calendar feeds to display on the same
calendar. 

Your time is much appreciated. 

Oct 6, 2009
#4 charlesm...@gmail.com
Got it.

<code>

feed1 = http://www.google.com/calendar/feeds/...
feed2 = http://www.google.com/calendar/feeds/...

$('#calendar').fullCalendar({

   eventSources: [$.fullCalendar.gcalFeed(feed1),$.fullCalendar.gcalFeed(feed2)],

});

</code>

Thanks!