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

Definition

Namespace:Telerik.Blazor.Components.Grid

Assembly:Telerik.Blazor.dll

Syntax:

C#
public abstract class GridRowToggleEventArgs

Inheritance: objectGridRowToggleEventArgs

Derived Classes: GridRowCollapseEventArgsGridRowExpandEventArgs

Constructors

C#
public GridRowToggleEventArgs(object item)
Parameters:itemobject

Properties

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

C#
public object Item { get; set; }

Defines whether the component should re-render. Useful when you need to update parameter, or state of the Grid in the event.

C#
public bool ShouldRender { get; set; }