Issue 418: Style Multiple Calendars
Status:  Done
Owner: ----
Closed:  Mar 2010
Reported by stumpthe...@gmail.com, Mar 24, 2010
Your using Sources to list multiple calendars into one. Is there a way to
add a class to each calendars events like you are doing here:
$('#calendar').fullCalendar({
    events: $.fullCalendar.gcalFeed(
        "http://www.google.com/your_feed_url/",
        {
            // put your options here
            className:       'gcal-event',
            editable:        true,
            currentTimezone: 'America/Chicago'
        }
    )
});

But do it for each calendar in the eventSources:
$('#calendar').fullCalendar({
    eventSources: [
        $.fullCalendar.gcalFeed("http://www.google.com/feed1"),
        $.fullCalendar.gcalFeed("http://www.google.com/feed2")
    ]
});

This way you could style different events from different calendars with
different colors.
Mar 30, 2010
Project Member #1 adamrs...@gmail.com
do something like this...

$('#calendar').fullCalendar({
    eventSources: [
        $.fullCalendar.gcalFeed("http://www.google.com/feed1", {
              className: 'gcal1'
        }),
        $.fullCalendar.gcalFeed("http://www.google.com/feed2", {
              className: 'gcal2'
        })
    ]
});
Status: Done
Aug 29, 2013
#2 johnully...@gmail.com
I just figured out how to update this for 10.5.  I am super proud, although for most it would be a no brainer:

$('#calendar').fullCalendar({
	eventSources: [
	    {
            url:'https://www.google.com/calendar/feeds/yourfeed.com/public/basic',
	    backgroundColor: '#CC0000',
	    },
	    {
	    url:'https://www.google.com/calendar/feeds/yourotherfeed.com/public/basic',
	    backgroundColor: '#008fd4',
	    }
	]
})