Example of Multiple Selection in ASP.NET MVC TreeView Control
This ASP.NET MVC TreeView exampleopens in a new tab demonstrates the multiple node selection functionalities of the TreeView. To select multiple nodes, press the CTRL key and select the desired nodes; or select any node and by pressing SHIFT key select another node, this selects all the nodes in-between the selected nodes.
- New South Wales
- Victoria
- South Australia
- Western Australia
The TreeView
component allows to select multiple nodes by enabling the allowMultiSelection
property.
In this demo, the TreeView is enabled with multiple selection
For more information, refer to the Multi Selectionopens in a new tab section from the documentation.