Class RecordClickEventArgs<T>
Provides information about an OnRecordClick event.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RecordClickEventArgs<T> : GridEventBaseArgs
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component. |
Constructors
RecordClickEventArgs()
Declaration
public RecordClickEventArgs()
Properties
Cell
Defines the cell element.
Declaration
public DOM Cell { get; set; }
Property Value
Type |
---|
DOM |
CellIndex
Gets the index of the clicked cell in the grid column.
Declaration
public int CellIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer value that represents the index of the clicked cell in the grid column. |
Column
Gets the grid column of the clicked cell.
Declaration
public GridColumn Column { get; }
Property Value
Type | Description |
---|---|
GridColumn | A GridColumn that represents the grid column of the clicked cell. |
ForeignKeyData
Gets the foreign key row data associated with the column.
Declaration
public IDictionary<string, IEnumerable<object>> ForeignKeyData { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Collections.Generic.IEnumerable<System.Object>> | A dictionary of foreign key row data associated with the column. The keys of the dictionary represent the names of the tables, and the values represent the associated rows as a collection of objects. |
Name
Defines the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type |
---|
System.String |
Row
Defines the row element.
Declaration
public DOM Row { get; set; }
Property Value
Type |
---|
DOM |
RowData
Gets the row data of the clicked row.
Declaration
public T RowData { get; }
Property Value
Type | Description |
---|---|
T | The row data of the clicked row as an object of type T. |
RowIndex
Gets the index of the clicked row.
Declaration
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the clicked row as an integer. |
Target
Defines the target element.
Declaration
public DOM Target { get; set; }
Property Value
Type |
---|
DOM |