Issue 759: multi day events with end 00:00
Status:  Done
Owner: ----
Closed:  Dec 2010
Reported by andreas....@googlemail.com, Dec 15, 2010
If I configure an event which is:

- not allDay
- end not on the same day
- end on time 00:00

fullcalendar does not display the last day of the event. 

Example:
An event with

start: 2010-12-08 00:00
end: 2010-12-12 00:00
allDay: false

is shown as 4-day event from 2010-12-08 to 2010-12-11 instead of 5-day event from 2010-12-08 to 2010-12-12.


Dec 15, 2010
#1 andreas....@googlemail.com
In addition:

I tried to configure a "second-based"-workaround, cause the seconds are not shown in my calendar, but events with end from: 00:00:01 and 00:00:59 show the same behaviour as mentioned above.
Dec 15, 2010
Project Member #2 althaus.it
I had similar issues with the different interpretation of FCs date handling (more human like) vs the vCalendar standard. The is a different logic for the end dates excklusivity. I think your issue is related to this.

Your event lasts exactly 4*24 hours as it's exclusivly ending on 0:00. Would it be inclusivly it would last 1 second too much.


Dec 26, 2010
Project Member #3 adamrs...@gmail.com
as althaus said, when allDay=false, the end is exclusive. look at the `end` in the following article:
http://arshaw.com/fullcalendar/docs/event_data/Event_Object/

you'll either need to set allDay=true, or make the end date 24 hours longer
Status: Done