[v4-alpha.2] Unable to display monthly recurring events with rrule plugin
See original GitHub issueFirst of all, many thanks for the great work. This is very useful!
I haven’t been able to recreate recurring events with the rrule plugin based on the example in the docs.
events: [
{
title: 'my recurring event',
// RRULE:FREQ=MONTHLY;COUNT=13;WKST=MO;BYMONTHDAY=13,
rrule: {
freq: 'monthly',
count: 13,
bymonthday: [13]
}
}
]
I realize this is still early work, but I was curious if I could get some clarity on this.
Basically, I’m trying to create a monthly recurring event. Here’s a JSBin with my current setup: https://jsbin.com/podufas/edit?html,output
P.S. sorry for hotlinking to your assets in the JSBin – I had no choice since v4 is not yet available via CDN
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
rrule - FullCalendar V4 - How to account for shorter months in ...
It works as expected with only one problem: how do I modify a recurring event to account for months with fewer days than...
Read more >RRule Plugin - Docs - FullCalendar
The RRule plugin is a connector to the rrule js library. It is powerful for specifying recurring events, moreso than FullCalendar's built-in simple...
Read more >How to Create Recurring Events Using RRule - Nylas
Intro. In this post, we will look at how to program recurring calendar events using the Recurrence Rule, also known as RRule.
Read more >VmU - River Thames Conditions
#taste Balikpapan rumah sakit, Number 2 maryland basketball, ... Poze cu violetta insarcinata, Maroon 5 miss you mp3, Event id 17055 login failed....
Read more >@fullcalendar/rrule | Yarn - Package Manager
Recurring events with RRule ... Then, install the FullCalendar core package, the RRule plugin, and any other ... Display full readme Display full...
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
@beau-gosse , you didn’t include the fullcalendar-specific rrule connector js file and you also misnamed the
dtstart
property todstart
. fixing those two problems fixed the bug: https://jsbin.com/kohuwuxuqa/edit?html,outputThe date should be in this format
2018-11-01
but it looks ok besides that, I think this feature is just not working yet. My example is copied from the docs and also doesn’t show events.