question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

change the default of nextDayThreshold to 00:00

See original GitHub issue

Rendering 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 screenshot

Issue Analytics

  • State:closed
  • Created 8 years ago
  • Reactions:1
  • Comments:21 (8 by maintainers)

github_iconTop GitHub Comments

3reactions
arshawcommented, Mar 20, 2019
3reactions
guilhermedecampocommented, Jun 21, 2016

👍 also agree with back to 00:00. Spent some good hours to find this issue!

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found