41
Views
7
Comments
[FullCalendar Reactive] FullCalendar - Simple Recurrence
fullcalendar-reactive
Reactive icon
Forge asset by Mediaweb
Application Type
Reactive

Hi,

In a future update, is it possible to add Simple Recurrence fields to the event structure?

https://fullcalendar.io/docs/recurring-events

Thanks,

Pedro

2024-10-09 04-44-30
Bhanu Pratap

@Pedro Coelho They haven't released any updates since 2024. You could try leaving a comment on their Forge component page, they might see it and consider it, though there's no guarantee.

2016-04-22 00-29-45
Nuno Reis
 
MVP

@Bhanu Pratap when the forum post is created from the component page, it says the name of the component in the title. It was the case.

2024-10-09 04-44-30
Bhanu Pratap

Oh, I had no idea! Thanks for telling me 😅

2016-04-22 00-29-45
Nuno Reis
 
MVP

You were wrong, but your comment made the team aware of the issue so you did a good thing :) 

2020-12-07 13-36-58
Alexandre Santos
Champion

Hi @Pedro Coelho, sorry for the late reply, we missed this message.


We don't usually make changes to our components unless really needed, to avoid breaking changes since it was stable. But can you please clarify what you would expect of a change?


rrule: {

        freq: 'weekly',

        interval: 5,

        byweekday: [ 'mo', 'fr' ],

        dtstart: '2012-02-01T10:30:00', // will also accept '20120201T103000'

        until: '2012-06-01' // will also accept '20120201'

}


Just adding these parameters to the structure would be enough?

2015-09-28 00-04-44
Pedro Coelho

Hi @Alexandre Santos,


In my case, I only need to use Simple Recurrence: https://fullcalendar.io/docs/recurring-events

Simply add these fields to the Event structure:

Event: {

        Title: 'Event Title',

        Start: 'date', //Nulldate

        End: 'date', //Nulldate

        ...

        daysOfWeek : [ 2, 4 ],

        startTime : 'time',

        endTime: 'time,

        startRecur: 'date',

        endRecur: 'date',

        groupId : 'text',

}

Thanks,

Pedro

2020-12-07 13-36-58
Alexandre Santos
Champion

Hey, sorry for the late reply.

Just to confirm, what you are expecting is this change, right?

Current Structure:


New Structure:


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.