GridState<TItem>
Class
The class that contains the state of the Telerik Grid Component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TItem
Syntax:
C#
public class GridState<TItem> : TableStateBase<TItem>
Inheritance: objectTableStateBase<TItem>GridState<TItem>
Inherited Members
Constructors
C#
public GridState()
Properties
Defines the collapsed groups in the GridData. Use together with GroupDescriptors. The collapsed groups can be defined only for the current page.
C#
public ICollection<int> CollapsedGroups { get; set; }
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<GridColumnState> ColumnStates { get; set; }
ExpandedItems
ICollection<TItem>
Defines the expanded items in the Grid. The expanded items can be defined only for the current page.
C#
public ICollection<TItem> ExpandedItems { get; set; }
Defines the grouping criteria for the Grid Data. Accepts GroupDescriptor.
C#
public ICollection<GroupDescriptor> GroupDescriptors { get; set; }