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.

events in month view do not display correctly

See original GitHub issue

I tried to create some long events across days. But some events did not display correctly.

let testEvents = [
    {
      "start": new Date(2017, 3, 4),
      "end": new Date(2017, 3, 7),
      "title":"Event 1"
    },
    {
      "allDay":true,
      "start": new Date(2017, 3, 13),
      "end":new Date(2017, 3, 16),
      "title":"Event 2"
    },
    {
      "allDay":true,
      "start":new Date(2017, 3, 22),
      "end":new Date(2017, 3, 25),
      "title":"Event 3"
    }
  ];

BigCalendar.setLocalizer(
  BigCalendar.momentLocalizer(moment)
);

class App extends Component {
  render() {
    return (
      <div>
        <div>
          <BigCalendar
            defaultDate={ new Date() }
            events={testEvents}
            views={['month']}
          />
        </div>
      </div>
    );
  }
}

I got the result as the link below. All events were all three 3 days long event. But 1 of them showed 4 days across. And all of the were built in the same rule http://imgur.com/QET5NMf Any ideas for this issue?

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:9 (1 by maintainers)

github_iconTop GitHub Comments

6reactions
apn-juncommented, Apr 19, 2017

got blank under month, any update?

3reactions
bgrubb83commented, Jun 1, 2017

@apn-jun, @john-hadron I had this problem too until I read the docs a bit more thoroughly 😃

“note: The default styles use height: 100% which means your container must set an explicit height (feel free to adjust the styles to suit your specific needs).”

Read more comments on GitHub >

github_iconTop Results From Across the Web

events showing up in month view on incorrect days -
I have recurring events appearing in the month view on incorrect days and even more ... Looks as if the recurrence is not...
Read more >
Show all calendar events in Month View; Don't hide them once
Show all calendar events in Month View; Don't hide them once there's more than 3 or 4. to indicate that this day has...
Read more >
What to Check if Calendar Events are Not Showing
If you find your events are 'disappearing', or are not showing up after you add them, here are some things to check: Hidden...
Read more >
Event display wrong in only month view not in week and day ...
Hello , I have a issue when there is a start and end date time is less than 9:00 AM. You can check...
Read more >
fullcalendar displaying event in the wrong day in month view ...
When i'm in the current month, the events that are on same day of the week are not displayed properly. They will display...
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