Class GridRowToggleEventArgs
Inheritance
System.Object
GridRowToggleEventArgs
Namespace: Telerik.Blazor.Components.Grid
Assembly: Telerik.Blazor.dll
Syntax
public abstract class GridRowToggleEventArgs : Object, IRenderEventArgs
Constructors
GridRowToggleEventArgs(Object)
Declaration
public GridRowToggleEventArgs(object item)
Parameters
System.Object
item
|
Properties
Item
Defines the item that has been affected. You can cast it to the model type to which you bind the grid.
Declaration
public object Item { get; set; }
Property Value
System.Object
|
ShouldRender
Defines whether the component should re-render. Useful when you need to update parameter, or state of the Grid in the event.
Declaration
public bool ShouldRender { get; set; }
Property Value
System.Boolean
|