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.
DayPilot.Scheduler.onRowRightClick(args);
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)