Looking to create an overnight event that repeats every 2 weeks in fullcalendar using rrule plugin in angular 10
rrule: {
freq: RRule.WEEKLY,
interval: 2,
},
I have not been able to create the overnight event using fullcalendar and rrule plugin.
I was able to create a simple recurring one day event that repeats every other week.
Currently using
Thanks for your feedback and input.
Your event object would need to look like this:
{
title: 'my recurring event',
duration: '39:00',
rrule: {
freq: 'weekly',
interval: 2,
byweekday: [ 'mo'],
dtstart: '2020-09-01T20:00:00'
}
}
Let's break that down according to the different requirements:
dtstart
. (Of course you can specify any start date you wish.)duration
of the event itself (not in the rrule) to make this workfreq
and interval
settings which you had already figured out.Live demo: https://codepen.io/ADyson82/pen/abNMoZK