The class that describes the event arguments to the grid events.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class GridRowClickEventArgs
Inheritance: objectGridRowClickEventArgs
Constructors
Properties
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.
C#
public EventArgs EventArgs { get; set; }
The Field of the clicked Grid column. This property will be populated when you click on a data cell.
C#
public string Field { get; set; }
Defines the affedcted data item. You can cast it to the model type to which you bind the Grid.
C#
public object Item { get; set; }
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.
C#
public bool ShouldRender { get; set; }