DayPilot.Scheduler.onRowRightClick

The onRowRightClick event is called by the JavaScript Scheduler component when a user right-clicks a row header. The event is fired before the default action specified using rowRightClickHandling.

Available since 2019.1.3559.

Declaration

DayPilot.Scheduler.onRowRightClick(args);

Parameters

  • args.row (DayPilot.Row) - row object representing the clicked row header

  • args.ctrl (boolean) - Ctrl key state

  • args.shift (boolean) - Shift key state

  • args.meta (boolean) - Meta key state

  • args.originalEvent - the original event object (MouseEvent)

  • args.preventDefault() - cancels the default action (rowRightClickHandling)

  • args.x (number) - zero-based index of the row header column (available since 2023.4.5756)