Recurring events that extend past the end of the view range do not show in the following view range (eg. next week)
See original GitHub issueHey, I am working with v4 of fullcalendar and using rrule for recurrence of events but wondering how can I add an event with long range say an event with a duration of 8 days. One way I figured out was using duration when all day event is set to be true, something like this.
{ title: 'event with everyday with range', allDay: true, rrule: { freq: 'daily', dtstart: '2019-04-02', until: '2019-04-09' }, duration: '192:00' },
but this event is not rendering properly in timeGridWeek and timeGridDay I am attaching the fiddle for the reference. Any other way to do this?
Issue Analytics
- State:
- Created 4 years ago
- Comments:13 (7 by maintainers)
Top GitHub Comments
Thanks @bhavikji. I see what’s going on now. I’ll have this fixed for the next release.
@arshaw hey thanks for fixing this, can I have v4.2.0 on npm via
npm i fullcalendar
command?