FullCalendar with strange behavior when displaying events in the "Month View" ending before 9 o'clock

0

FullCalendar has a default behavior for month view that ignores event endings when they end before 9am, for example:

Week view: (ending before 9am on day 4)

AsshowninMonthview:

Week view: (ending after 9am on day 4)

AsshowninMonthview:

Does anyone know how to fix this? I would like the event to be shown on day 3 and 4 even though it ends before 9 o'clock.

    
asked by anonymous 06.12.2014 / 00:35

1 answer

0

To change this default behavior you need to change the nextDayThreshold property, which is responsible for setting the minimum hours to be considered an event day in the month view. It defaults to "09:00:00" (9am) according to the documentation:

  

When an event's end time spans into another day, the minimum time it   should be in order for it to render as if it were on that day.

     

Duration, default: "09:00:00" (9am)

More information on link

    
06.12.2014 / 01:29