Class TreeListState<TItem>
The class that contains the state of the Telerik TreeList Component.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TreeListState<TItem> : TableStateBase<TItem>
Type Parameters
TItem
|
Constructors
TreeListState()
Declaration
public TreeListState()
Properties
ColumnStates
Defines the column state of the configured columns in the Grid. Used for changing the indices of the columns and their width.
Declaration
public ICollection<TreeListColumnState> ColumnStates { get; set; }
Property Value
System.Collections.Generic.ICollection<TreeListColumnState>
|
ExpandedItems
Defines the expanded items in the TreeList.
Declaration
public ICollection<TItem> ExpandedItems { get; set; }
Property Value
System.Collections.Generic.ICollection<TItem>
|
ParentItem
Defines the parent of a newly added item. Used when inserting child items.
Declaration
public TItem ParentItem { get; set; }
Property Value
TItem
|