Class
GridStateEventArgs<TItem>

The class that describes the event arguments of the OnStateChanged event of the grid. Used to track changes made by user interaction such as grouping, sorting, filtering, column resizing, etc.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

cs-api-definition
public class GridStateEventArgs<TItem> : EventArgs

Inheritance: objectEventArgsGridStateEventArgs<TItem>

Inherited Members EventArgs.Empty

Constructors

GridStateEventArgs()

Declaration

cs-api-definition
public GridStateEventArgs()

GridStateEventArgs(string)

Declaration

cs-api-definition
public GridStateEventArgs(string property)

Parameters

property

string

Properties

GridState

Defines the current state of the Grid. Use the OnStateInit event to set the default (initial) Grid state.

Declaration

cs-api-definition
public GridState<TItem> GridState { get; set; }

Property Value

GridState<TItem>

PropertyName

Defines the changed property in the Grid State in the OnStateChanged event.

Declaration

cs-api-definition
public string PropertyName { get; set; }

Property Value

string