DayPilot.Calendar.onEventDeleted

The onEventDeleted event is fired after the event is removed from the calendar using the built-in delete icon.

See also the onEventDelete event which is called before the event is actually removed.

Declaration

DayPilot.Calendar.onEventDeleted(args);

Parameters

Example

dp.onEventDeleted = function(args) {
  dp.message("Event deleted: " + args.e.text());
};