Class
GridRowToggleEventArgs

Definition

Namespace:Telerik.Blazor.Components.Grid

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public abstract class GridRowToggleEventArgs

Inheritance: objectGridRowToggleEventArgs

Derived Classes: GridRowCollapseEventArgsGridRowExpandEventArgs

Constructors

GridRowToggleEventArgs(object)

Declaration

cs-api-definition
public GridRowToggleEventArgs(object item)

Parameters

item

object

Properties

Item

Defines the item that has been affected. You can cast it to the model type to which you bind the grid.

Declaration

cs-api-definition
public object Item { get; set; }

Property Value

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

cs-api-definition
public bool ShouldRender { get; set; }

Property Value

bool