Class GridRowClickEventArgs
The class that describes the event arguments to the grid events.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GridRowClickEventArgs : Object, IRenderEventArgs
Constructors
GridRowClickEventArgs(Object, String, EventArgs)
Declaration
public GridRowClickEventArgs(object item, string field, EventArgs eventArgs)
Parameters
System.Object
item
|
System.String
field
|
System.EventArgs
eventArgs
|
Properties
EventArgs
Defines the arguments of the event. You can cast it to the specific argument type
(MouseEventArgs
or KeyboardEventArgs
)
to check the event origin and obtain additional event arguments.
Declaration
public EventArgs EventArgs { get; set; }
Property Value
System.EventArgs
|
Field
The Field of the clicked Grid column. This property will be populated when you click on a data cell.
Declaration
public string Field { get; set; }
Property Value
System.String
|
Item
Defines the affedcted data item. 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 if the component should re-render after the handler execution.
Useful when you need to update parameter, or state of the Grid in the event.
The default value is false
.
Declaration
public bool ShouldRender { get; set; }
Property Value
System.Boolean
|