I've seen this asked (and answered) a number of times, but thus far none of the solutions is working for me.
I have a cfc that returns json data to an instance of FullCalendar.
The returned data looks like this:
[{"id":2,"title":"Test Event One","start":"February, 17 2011 09:30:00","end":"February, 17 2010 10:30:00","allday":false}]
The event is showing on the right day in all the calendar views - but is showing up in the all day section.
I'm invoking the calendar like this:
$('#calendar').fullCalendar({
editable: true,
events:'getEvents.cfc?method=getEvents&returnformat=json',
header: {
right: '',
center: 'prev,next today',
left: 'agendaDay,agendaWeek,month,'
}
I'd really appreciate any help with this - Thanks
It doesn't appear that you're returning the date in the format the fullCalendar object expects. Looking at the Event Object documentation, you need to return the dates in the following formats: