change the default of nextDayThreshold to 00:00
See original GitHub issueRendering problem for multiple-day-events on month-view when event is ending before 09am
Hello folk,
I have found the following bug in fullcalender 2.4.0. I modified a copy of default.html from demo-package and add some own events.
(see following code)
$('#calendar').fullCalendar({
editable: true,
//timezone:'Europe/Berlin',
eventLimit: true, // allow "more" link when too many events
events: [
{
title: 'Meeting',
start: '2015-10-12T10:30:00',
end: '2015-10-13T12:30:00' // <<<correct
},
{
title: 'TEST from 22-06',
start: '2015-10-18T22:00:00',
end: '2015-10-19T06:00:00' // <<<bug
},
{
title: 'TEST from 12-08:59',
start: '2015-10-20T12:00:00',
end: '2015-10-21T08:59:00' // <<<bug
},
{
title: 'TEST from 22-09',
start: '2015-10-23T22:00:00',
end: '2015-10-24T09:00:00' // <<<correct
},
{
title: 'XXX22-20',
start: '2015-10-27T22:00:00',
end: '2015-10-29T20:00:00' // <<<correct
}
]
});
Can anyone analyse the problem.
Have many thanks in advance.
Best regards
Issue Analytics
- State:
- Created 8 years ago
- Reactions:1
- Comments:21 (8 by maintainers)
Top Results From Across the Web
nextDayThreshold - Docs - FullCalendar
When an event's end time spans into another day, the minimum time it must be in order for it to render as if...
Read more >Fullcalendar end date wrong by one day - Stack Overflow
You need to set nextDayThreshold: '00:00' and it will show the last day!
Read more >fullcalendar/common/main.js.map - UNPKG
n if (endTimeMS && endTimeMS >= asRoughMs(nextDayThreshold)) {\n endDay ... n // if duration will change, there's no way the default duration will...
Read more >Documentation - Vertuna WIKI - ConfiForms
Use the layout of Registration Control (from form), regControlLayout, You can point "Edit controls" macro to reference a default ConfiForms ...
Read more >Calendar widget - GitHub Gist
for most browsers, if a height isn't set on the table, can't do liquid-height within cells */ ... TODO: give nextDayThreshold a default...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
V4 was officially released a few days ago!
👍 also agree with back to 00:00. Spent some good hours to find this issue!