function row_getAllCells<TFeatures, TData>(row): Cell<TFeatures, TData, unknown>[];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.
TFeatures extends TableFeatures
TData extends RowData
Row<TFeatures, TData>
Cell<TFeatures, TData, unknown>[]
const cells = row_getAllCells(row)const cells = row_getAllCells(row)