DayPilot.Calendar.events.remove

The events.remove() method removes the specified event from the calendar UI and from the data source (events.list).

Declaration

DayPilot.Calendar.events.remove(e[, data]);

Parameters

  • e (DayPilot.Event) - event to be removed
  • data (object) - custom data to be sent to the server with the Notify event (ASP.NET WebForms, ASP.NET MVC, Java)

The e object has to be acquired using find() or findRecurrent() methods.

Return Value

DayPilot.Action object that stores the action details.

Example

Remove an event with id '123' and save the action in the queue.

var e = dps.events.find('123');
dps.events.remove(e).queue();

Remove an event with id '123' and send the action to the server immediately.

var e = dps.events.find('123');
dps.events.remove(e).notify();