Reputation: 1
I came across a strange happening with using FullCalendar that I haven't been able to figure out. I'm not sure if it's a hiccup in FullCalendar or something I'm doing (probably the latter).
Events past 8:00pm aren't showing up on my calendar (i.e. an event at 8:00-9:00pm) in basicDay view. If I set the event start time to 7:59pm, it will show up. I've checked my timezones, and everything is set to Eastern Time (New York).
The other strange part to this is that the other views display correctly. Month and basicWeek display that dropped event just fine and have no issue with any events after 8:00pm.
See the page (and view the all code) here: http://www.clarksportscenter.com/calendar/. A good date to navigate to would be April 16 and look at the dark blue dates (Aquatics). Look specifically for an event named "Open Laps" that happens 8:00-9:00pm. It will be displayed in basicWeek by default, and you will be able to see it. If you click to turn the calendar into basicDay and move forward to April 16, the event disappears. Sometimes the event displays if you click backwards day by day or by clicking through the month/week/day views, sometimes it doesn't. The reason why this is problematic is that I also have the calendar on the homepage (http://www.clarksportscenter.com), and I can't have it dropping events on there.
Any help would be greatly appreciated! Thanks!
Upvotes: 0
Views: 974
Reputation: 6923
I cannot reproduce your problem.
With a basic setup of fullcalendar all your events are shown correct, also without a specified timezone :
jQuery('#calendar').fullCalendar({
/************** Config ***************/
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
}
/************** Events ***************/
, eventSources: [
{ // gym
url: "https://www.google.com/calendar/feeds/--YOUR_SWIM_EVENTS--group.calendar.google.com/public/basic"
, className: "gym-event"
// , currentTimezone: 'America/New_York'
}
]
});
.... and a screenshot with your events : http://tinypic.com/r/lb1ia/5
Perhaps an update to fullcalendar 1.5.3 will do it ?
Upvotes: 0