I have the following code to retrieve 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 similar to those described above (I retired for the sake of brevity).
Thus, the above events appear when I am in the month view mode, but mysteriously are absent when I am in the week or day mode.
What is wrong here?
Thanks in advance for your answers.
source share