DayPilot.Queue.onEventRightClick

The onEventRightClick event handler is fired before the default event click action (defined using eventRightClickHandling property).

Declaration

DayPilot.Queue.onEventRightClick(args);

Parameters

Example

dp.onEventRightClick = function(args) {
  if (args.e.id() === "3") {
    args.preventDefault();
  }
};