Cell
API
Name & Description | Option(s) | Default |
---|---|---|
The associated Column object for the cell. |
| |
Returns the rendering context for cell-based components like cells and
aggregated cells. |
| |
Returns whether the cell is currently aggregated. |
| |
Returns whether the cell is currently grouped. |
| |
Returns whether the cell is currently a placeholder cell. |
| |
Returns the value for the cell, accessed via the associated column's accessor
key or accessor function. |
| |
The unique ID for the cell across the entire table. |
| |
The associated Row object for the cell. |
|
Type
Column
Description
The associated Column object for the cell.
Type
() => {cell: Cellcolumn: ColumngetValue: () => TValuerow: Row<TData>table: Table<TData>}
Description
Returns the rendering context for cell-based components like cells and
aggregated cells.
Type
() => boolean
Description
Returns whether the cell is currently aggregated.
Type
() => boolean
Description
Returns whether the cell is currently grouped.
Type
() => boolean
Description
Returns whether the cell is currently a placeholder cell.
Type
() => [T,][T extends any ? 0 : never]
Description
Returns the value for the cell, accessed via the associated column's accessor
key or accessor function.
Type
string
Description
The unique ID for the cell across the entire table.
Type
Row<TData>
Description
The associated Row object for the cell.