DayPilot.Calendar.onEventRightClicked

The onEventRightClicked event is fired when a user clicks the calendar event using a right mouse button.

This event is fired after the default action specified using eventRightClickHandling property.

See also the onEventRightClick event which is fired before the default action.

Declaration

DayPilot.Calendar.onEventRightClicked(args);

Parameters

Example

dp.onEventRightClicked = (args) => {
  DayPilot.Modal.alert("Event clicked: " + args.e.text());
};