row_getAllCells

Function: row_getAllCells()

ts
function row_getAllCells<TFeatures, TData>(row): Cell<TFeatures, TData, unknown>[];

Defined in: core/rows/coreRowsFeature.utils.ts:167

Constructs one cell for each leaf column in this row.

The result follows table.getAllLeafColumns() order and includes hidden columns; visibility-specific APIs filter this list later.

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Parameters

row

Row<TFeatures, TData>

Returns

Cell<TFeatures, TData, unknown>[]

Example

ts
const cells = row_getAllCells(row)