events in month view do not display correctly
See original GitHub issueI 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:
- Created 6 years ago
- Comments:9 (1 by maintainers)
Top 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 >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
got blank under month, any update?
@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).”