DayPilot.Scheduler.rowSortingMode

The rowSortingMode (string) specifies the type of tree nodes that should be sorted. This applies when sorting rows using one of the row header columns in the JavaScript Scheduler.

Available since 2020.1.4246.

Possible Values

  • "LeavesOnly" - if all sibling nodes are leaf nodes, they will be sorted

  • "ParentsOnly" - if all sibling nodes are parent nodes, they will be sorted

  • "All" - sorts nodes at every level (available since 2024.3.6155)

Default Value

"LeavesOnly"

Example

Scheduler config:

{
  rowSortingMode: "All",
  // ...
}