The onRowMoved event handler is called by the JavaScript Scheduler when the user finishes drag-and-drop row moving, after the default action (rowMoveHandling).
DayPilot.Scheduler.onRowMoved(args)
args.external
(boolean) - indicates that the row was dragged from an external source (custom draggable item or another Scheduler instance)
args.source
(DayPilot.Row) - the dragged row
args.target
(DayPilot.Row) - the target row
args.position
(string) - position of the dropped row, relative to the target
Position values:
"child"
"before"
"after"
"forbidden"