Defined in: core/cells/coreCellsFeature.types.ts:44
TFeatures extends TableFeatures
TData extends RowData
TValue extends CellData = CellData
column: Column<TFeatures, TData, TValue>;
Defined in: core/cells/coreCellsFeature.types.ts:29
The associated Column object for the cell.
getContext: () => CellContext<TFeatures, TData, TValue>;
Defined in: core/cells/coreCellsFeature.types.ts:52
Returns the rendering context (or props) for cell-based components like cells and aggregated cells. Use these props with your framework's flexRender utility to render these using the template of your choice:
CellContext<TFeatures, TData, TValue>
getValue: Getter<TValue>;
Defined in: core/cells/coreCellsFeature.types.ts:56
Returns the value for the cell, accessed via the associated column's accessor key or accessor function.
id: string;
Defined in: core/cells/coreCellsFeature.types.ts:33
The unique ID for the cell across the entire table.
renderValue: Getter<TValue | null>;
Defined in: core/cells/coreCellsFeature.types.ts:60
Renders the value for a cell the same as getValue, but will return the renderFallbackValue if no value is found.
row: Row<TFeatures, TData>;
Defined in: core/cells/coreCellsFeature.types.ts:37
The associated Row object for the cell.
table: Table_Internal<TFeatures, TData>;
Defined in: core/cells/coreCellsFeature.types.ts:41
Reference to the parent table instance.