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

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

Definition

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; }

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; }