DayPilot.Month.onEventRightClicked

The onEventRightClicked event is fired when a user clicks the monthly calendar event using 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.Month.onEventRightClicked(args);

Parameters

Example

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