I'm struggling to get timed events to display correctly on the agendaWeek view. The first two events, which are mine, show up as all day events instead of at their specified times. However, the last event from the documentation displays in the correct time block. I've been looking at this for a while now, and I feel like I must be overlooking something simple. Can anyone else spot the issue?
$(document).ready(function() {
$("#calendar").fullCalendar({
defaultView: 'agendaWeek',
month: 0,
date: 4,
height: 650,
header: {left: 'title', center:'agendaWeek'},
events: [
{
title : 'Fred',
start : '2010-01-04 08:00:00',
end : '2010-01-04 09:00:00',
allday : false
},
{
title : 'Betty',
start : '2010-01-06 08:00:00',
allday : false
},
{
title : 'event3',
start : '2010-01-05 12:30:00',
allDay : false
}
]
});
});