The onRowSelect event is fired by the JavaScript Scheduler when the row selection is changed (before the default action, which is selecting/unselecting the row in the UI).
You can cancel the default action using args.preventDefault()
.
DayPilot.Scheduler.onRowSelect(args)
args.row (DayPilot.Row object)
args.selected (true if the row has just been selected; false if it has been unselected)
args.ctrl (true if Ctrl key is pressed)
args.shift (true if Shift key is pressed)
args.meda (true if Meta key is pressed)
args.preventDefault()
For APIv1, this event is fired when row selection is changed (after selecting/unselecting the row in the UI).
DayPilot.Scheduler.onRowSelect(row)
Available variables:
row - DayPilot.Row object