I am working with fullcalendar plugin, and I am trying to move events around with drag and drop. However, I have some requirement about how I want those things to move. I can not move events if they have 'close' status or if they happen to be before today on the calendar. All of this work fine expect for recurring events.
With recurring events, if I move one of those events, it moves all other recurring events together (even those that happened before today). However, I want to make the recurring events that already happened to stay were they are. How can I do this?
For all other events (such as single day event), I just used eventRender
and checked for status of event and date differences to set event.editable
to false and event.disableDragging
to true. However, this seems to now have effect on recurring events.