function cell_getContext<TFeatures, TData, TValue>(cell): object;function cell_getContext<TFeatures, TData, TValue>(cell): object;Defined in: core/cells/coreCellsFeature.utils.ts:54
Builds the render context passed to a column's cell template.
The returned object includes stable references to the table, row, column, and cell, plus bound getValue and renderValue helpers for render functions.
TFeatures extends TableFeatures
TData extends RowData
TValue extends unknown = unknown
Cell<TFeatures, TData, TValue>
object
cell: Cell<TFeatures, TData, TValue>;cell: Cell<TFeatures, TData, TValue>;column: Column<TFeatures, TData, TValue> = cell.column;column: Column<TFeatures, TData, TValue> = cell.column;getValue: () => NoInfer<TValue>;getValue: () => NoInfer<TValue>;NoInfer<TValue>
renderValue: () => NoInfer<TValue | null>;renderValue: () => NoInfer<TValue | null>;NoInfer<TValue | null>
row: Row<TFeatures, TData> = cell.row;row: Row<TFeatures, TData> = cell.row;table: Table_Internal<TFeatures, TData> = cell.table;table: Table_Internal<TFeatures, TData> = cell.table;const context = cell_getContext(cell)const context = cell_getContext(cell)