New to Telerik UI for BlazorStart a free 30-day trial

The class that contains the state of the Telerik TreeList Component.

Definition

Constructors

C#
public TreeListState()

Properties

Defines the column state of the configured columns in the Grid. Used for changing the indices of the columns and their width.

C#
public ICollection<TreeListColumnState> ColumnStates { get; set; }

Defines the expanded items in the TreeList.

C#
public ICollection<TItem> ExpandedItems { get; set; }

Defines the parent of a newly added item. Used when inserting child items.

C#
public TItem ParentItem { get; set; }