Class GridRowClickEventArgs
The class that describes the event arguments to the grid events.
Inheritance
System.Object
GridRowClickEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GridRowClickEventArgs : EventArgs
Constructors
GridRowClickEventArgs(Object, EventArgs)
Declaration
public GridRowClickEventArgs(object item, EventArgs eventArgs)
Parameters
System.Object
item
|
System.EventArgs
eventArgs
|
Properties
EventArgs
Defines the arguments of the event. You can cast it to the specific argument type and check if the click comes from mouse, keyboard or other.
Declaration
public EventArgs EventArgs { get; set; }
Property Value
System.EventArgs
|
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
|