Tree Grid mutliple selection can be achieved with help of checkbox in each row. To render checkbox in each Tree Grid row, you need
to define column type as checkbox
using
columns->type
property.
Selection can be persisted on all the operations using
SelectionSettings-> PersistSelection
property. For persisting selection on the Tree Grid, any one of the column should be defined as a
primary key using columns->IsPrimaryKey
property.
In this demo, Tree Grid mutliple selection has been enabled with selection persistance.
More information on the paging configuration can be found in this documentation section.
The Tree Grid is used to represent the hierarchical data in a tabular format,
combining the visual representation of Grid and TreeView controls.
It represents the data from Datasource
. Such as an array of JSON objects, OData web services, or
DataManager
binding data fields to columns or self-referential datasource.
In this demo, the Tree Grid is populated with its minimum default settings. More information on the Tree Grid instantiation can be found in this documentation section.