RowInfo
Represents information about a specific row and cell in the grid. Used for identifying row/cell context during events and operations.
Props
The following table outlines the props for the RowInfo:
| Name | Type | Default | Description |
|---|---|---|---|
| cell | Element | null | Represents the element of a cell within a grid row. This element provides access to the cell's DOM properties and methods. |
| column | null | Provides configuration for the column associated with the cell. Such as column name, formatting rules and more. | |
| columnIndex | number | null | Specifies the zero-based index of the cell within its parent row. Used for identifying the cell's position in the row. |
| data | T | null | Contains the data object associated with the row. This object holds the row's data, which can be used for rendering or processing. |
| row | Element | null | Represents the element of the row within the grid. This element provides access to the row's DOM properties and methods. |
| rowIndex | number | null | Specifies the zero-based index of the row within the grid. Used for identifying the row's position in the grid. |