recurring event exceptions
See original GitHub issuehttps://fullcalendar.io/docs/v4/recurring-events
Would love an ability to provide exceptions to the recurring event. In other words, My Event occurs weekly between Friday March 8th and Friday March 29th except for March 15th. Exceptions could be an array that lets us provide multiple dates.
{
daysOfWeek: ['5'],
startTime: '12:00',
endTime: '13:00',
startRecur: '2019-03-08',
endRecur: '2019-03-30',
exceptions: ['2019-03-15']
}
Issue Analytics
- State:
- Created 5 years ago
- Reactions:10
- Comments:8 (2 by maintainers)
Top Results From Across the Web
How do I add an exception to a recurring event?
Exceptions to recurring events are created by POST ing a new entry containing a gd:originalEvent element referencing the startTime of the recurring event...
Read more >What Does the Recurring Event Exception Mean? - Clio Support
The triangle with the message 'Recurring Event Exception' means that there was a change made to the recurring event that affected that one ......
Read more >/events should return ALL exceptions to recurring events ...
Background: When exceptions are made to recurring events Outlook makes a separate exception appointment, but does not return that appointment ...
Read more >Creating a Recurring Event - Knowledgebase
You can also exclude days or dates within a recurring event by using an Exception. For example, if you have an event that...
Read more >Google calendar api: recurring events exceptions + master ...
Your issue is related to how are you adding the exceptions and also in the way you are updating the main event.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
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
thanks. we should add support for exdate/exrule as properties of the event object somehow
Thanks @arshaw and @flamber. I didn’t notice that EXDATE was an option. Adding it to the object style notation would definitely be helpful. Here’s an example of using EXDATE rule as a string in case anyone needs an example.
DTSTART:20190312T010000\nEXDATE:20190323T010000\nEXDATE:20190322T010000\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR,SA,SU;UNTIL=20190330
Recurring starts on 2019-03-12 1AM (MO-SU) until 2019-03-30 except 2019-03-22 and 2019-03-23