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.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GridStateEventArgs<TItem> : EventArgs
Type Parameters
TItem
|
Constructors
GridStateEventArgs()
Declaration
public GridStateEventArgs()
GridStateEventArgs(String)
Declaration
public GridStateEventArgs(string property)
Parameters
System.String
property
|
Properties
GridState
Defines the current state of the Grid. Use the OnStateInit event to set the default (initial) Grid state.
Declaration
public GridState<TItem> GridState { get; set; }
Property Value
GridState<TItem>
|
PropertyName
Defines the changed property in the Grid State in the OnStateChanged event.
Declaration
public string PropertyName { get; set; }
Property Value
System.String
|