ClassTreeListState<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:
cs-api-definition
public class TreeListState<TItem> : TableStateBase<TItem>
Inheritance: objectTableStateBase<TItem>TreeListState<TItem>
Inherited Members
Constructors
TreeListState()
Declaration
cs-api-definition
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
cs-api-definition
public ICollection<TreeListColumnState> ColumnStates { get; set; }
Property Value
ExpandedItems
Defines the expanded items in the TreeList.
Declaration
cs-api-definition
public ICollection<TItem> ExpandedItems { get; set; }
Property Value
ICollection<TItem>
ParentItem
Defines the parent of a newly added item. Used when inserting child items.
Declaration
cs-api-definition
public TItem ParentItem { get; set; }
Property Value
TItem