Issue 2155: full calendar 2 is not extending the event bar(month mode) to the next day even though the event timing of the previous day crosses 12 am
Status:  Done
Owner: ----
Closed:  May 2014
Reported by sur90....@gmail.com, May 29, 2014

0
down vote
favorite
I am using fullcalendar 2.

for ex, I am creating a event which start from may 29 2014 8:00pm and ends at may 30 2014 3:00 am

but if you switch the mode to month view its not extending the event bar to 30 may.

the event bar is getting extended only if the difference between start time and end time is greater than 15 hours.

i even checked on the following link

http://arshaw.com/js/fullcalendar-2.0.0-beta2/demos/agenda-views.html

same is reflecting there

but this feature is working on previous versions.

Please help me on this i have almost completed everything with this fullcalendar2.

Any help is highly appreciated.
May 29, 2014
Project Member #1 adamrs...@gmail.com
it is because of new behavior in v2:
http://arshaw.com/fullcalendar/docs2/event_rendering/nextDayThreshold/

the event must be past 9:00am by default in order to qualify as being next day. lots of ppl wanted this behavior.

but you can just change it to "00:00:00" to get the old behavior back.
Summary: full calendar 2 is not extending the event bar(month mode) to the next day even though the event timing of the previous day crosses 12 am (was: Enter a one-line summaryfull calendar 2 is not extending the event bar(month mode) to the next day even though the event timing of the previous day crosses 12 am)
Status: Done
Labels: milestone-date
May 31, 2014
#2 surendi...@rsalesarm.com
Thank you for helping me on this.

can you provide me a complete syntax to accomplish this. 

I am still can't able to figure it out via code.

Regards,
May 31, 2014
#3 Lav...@gmail.com
All you need to do is add the option to your fullCalendar config.

It will look something like this:

$("#calendar").fullCalendar({
    nextDayThreshold: "00:00:00,
});