TreeListState<TItem>
Class
The class that contains the state of the Telerik TreeList Component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TItem
Syntax:
C#
public class TreeListState<TItem> : TableStateBase<TItem>
Inheritance: objectTableStateBase<TItem>TreeListState<TItem>
Inherited Members
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; }
ExpandedItems
ICollection<TItem>
Defines the expanded items in the TreeList.
C#
public ICollection<TItem> ExpandedItems { get; set; }
ParentItem
TItem
Defines the parent of a newly added item. Used when inserting child items.
C#
public TItem ParentItem { get; set; }