I'm passing to fullcalendar an event like this one:
{
id: 31,
title: 'Test',
start: '2014-12-22',
end: '2014-12-23',
allDay: true
}
I expected to find in the calendar an event that spans two whole days, but the event is only in the 2014-12-22
slot, not in the 2014-12-23
one. The nextDayThreshold parameter is set to 00:00:00
, but according to the documentation it should be ignored when allDay is set to true. I'm sure that allDay is correctly interpreted because in the agenda view the event appears in the all-day row.
How can I set fullcalendar to display such an event in both days?