I'm using fullcalendar with drag-drop external events and json data source. These events repeat weekly by default.
I want to now add functionality that enables a user to delete a single instance of this repeating event (like in google calendar). I believe this will require some sort of mechanism to exclude a certain event date from a repeating event.
I wasn't able to find anything in the fullcalendar documentation that would support this sort of behaviour out-of-the-box.
I would prefer a client-side only solution to this.
removeEvents
function (fullcalendar.io/docs/event_data/removeEvents). I believe the last line might be what you are looking for. Assuming you know at this point which event object is to be deleted. – SlyvainremoveEvents
wouldn't be possible I believe. – ZaxteridOrFilter
can also be a function that returnstrue
for a given event object. If the user clicks on an event, you know the instance of this object and can therefore send it to the "idOrFilter function". I never tried it, but that's how I would implement it. – SlyvainclientEvents
, but I believe that would still reflect the event deleted this way. – Zaxter