Blazor TreeView Example
The Blazor TreeView sample demonstrates the default functionalities of the TreeView
. Click on node to select it, and click on the expand/collapse icon or double click on node to expand/collapse it. The child nodes will be loaded on expanding the parent node.
- Smith
- Public
- Admin
The TreeView
component is used to display the data in a hierarchical structure with the configuration options to control the way of data is presented and manipulated. It will pull the data from a data source, such as an array of JSON objects, OData web services, or DataManager binding data fields to the TreeViewFieldsSettings directive.
In this demo, the TreeView
is populated with its minimum default settings.
More information on the TreeView
instantiation can be found in the documentation section.