tags:

views:

10

answers:

0

Hello everyone,

I have multiple gcal feeds going into one calendar set to basicDay view. It renders all the events from all of the feeds as long as they are All Day events. If I have events that are given a start/end time, they do not show up at all. If I switch that very same calendar to basicWeek or month view every single event shows up great. It is only when set to basicDay that I lose any "timed" events. Does anyone know how can I fix this?

$(document).ready(function() {

// page is now ready, initialize the calendar...
  • $('#calendar').fullCalendar({ defaultView: 'basicDay', basicDay: 'h:mm{ - h:mm}', eventSources: [ $.fullCalendar.gcalFeed("http://www.google.com/calendar/feeds/qk02ao1lop5vn3a5rshsmu1pks%40group.calendar.google.com/public/basic", {className: 'saints',}), $.fullCalendar.gcalFeed("http://www.google.com/calendar/feeds/ho8gn0tgne6bpbbv1oof47lgcs%40group.calendar.google.com/public/basic", {className: 'festivals',}), $.fullCalendar.gcalFeed("http://www.google.com/calendar/feeds/1maek2s3jr5j3ld5h7db46gsvo%40group.calendar.google.com/public/basic", {className: 'music',}), $.fullCalendar.gcalFeed("http://www.google.com/calendar/feeds/67063shrcu9781l73sopnfk244%40group.calendar.google.com/public/basic", {className: 'hornets',}), $.fullCalendar.gcalFeed("http://www.google.com/calendar/feeds/qcn787spo18nvprs9nm87qksmk%40group.calendar.google.com/public/basic", {className: 'zephyrs',}) ], eventClick: function( calEvent, jsEvent, view ) { var txt = ' ' + calEvent.title + '
    ' + '
    ' + 'Where: ' + '
    ' + calEvent.location + '
    ' + '
    ' + 'Info: ' + '
    ' + calEvent.description; // for an image use: jQuery.facebox({ image: 'dude.jpg' }) // for ajax page use: jQuery.facebox({ ajax: 'remote.html' }) jQuery.facebox(txt); return false; }

    });

});