JQuery:FullCalendar Plugin: Events are not shown in week view and day view but are shown in month vi

Posted by bocode on Stack Overflow See other posts from Stack Overflow or by bocode
Published on 2010-02-18T17:29:45Z Indexed on 2010/05/11 23:24 UTC
Read the original article Hit count: 247

Filed under:
|
|

I've the following code to fetch events:

$('#calendar').fullCalendar({
theme: true,
slotMinutes: 10,
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay',
},
defaultView: 'agendaDay',
allDaySlot: false,
editable: false,
events: "/cgi-bin/shlk/getshlkruns.pl"
});

The output from getshlkruns.pl is fairly simple json feed:

[{'title': 'Successful','start': 1266398223,'end': 1266398266,'url': '/shlk/cgi-bin/getshlkrunlog.pl?i=21'}]

There are several events like above (i've removed for brevity sake).

So the above events show up when am in the month view but mysteriously absent when am in week or day view.

What am doing wrong here?

Thanks in advance for your answers.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about fullcalendar