I am using FullCalendar http://fullcalendar.io/ to display some events on a web page.
The calendar is created like this
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
allDayDefault: false,
selectable: true,
selectHelper: true,
editable: true,
eventLimit: true, // allow "more" link when too many events
});
Events are created through the renderEvent operation (not json feed) like
$('#calendar').fullCalendar('renderEvent', newEvent, 'stick');
where the newEvent is created like this
newEvent = {
title : 'mytitle',
start : startDate,
allDay: false,
id: eventId,
description: 'my test event'
};
the problem is that events are correctly shown in month view but are not shown in week or day views.
UPDATE
I am using this date format: 2015-02-01T01:00:00
jQueryandfullcalendardo you use ? how is yourstartDatedefined ? - LeGEC