SelectableSettings
The settings for the selection functionality of the TreeList. See example.
Definition
Package:@progress/kendo-angular-treelist
Properties
checkboxOnly?
boolean
Determines if the selection is performed only through clicking a checkbox. If enabled, clicking the row itself does not select the row. Applicable if at least one checkbox column is present.
drag?
boolean | { snap: boolean }
Specifies the drag selection options.
enabled?
boolean
Specifies if the selection functionality is enabled.
Setting this option to false stops all selection-related functionality.
The end user cannot select or deselect rows or cells.
Items in the selectedItems collection are not rendered as selected.
The isSelected callback is ignored.
mode?
"row" | "cell"
Specifies the selection mode.
multiple?
boolean
Specifies if multiple selection is enabled.
readonly?
boolean
Setting this option to true prevents the end user from selecting and deselecting items.
When the selection functionality is enabled and readonly is set to true,
programmatic selection is still possible by using the selectedItems collection
or the isSelected callback.