Cell API Reference

constructCell

Function: constructCell()

ts
function constructCell<TFeatures, TData, TValue>(
   column, 
   row, 
table): Cell<TFeatures, TData, TValue>;

Defined in: core/cells/constructCell.ts:32

Constructs a cell instance from normalized table internals.

This wires core properties, feature prototype APIs, and instance data used by table rendering and row-model operations.

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

TValue

TValue extends unknown = unknown

Parameters

column

Column<TFeatures, TData, TValue>

row

Row<TFeatures, TData>

table

Table_Internal<TFeatures, TData>

Returns

Cell<TFeatures, TData, TValue>