Docs
CodeRabbit
Cloudflare
Railway
Netlify
OpenRouter
AG Grid
SerpAPI
Clerk
WorkOS
Unkey
Prisma
Sentry
Electric
CodeRabbit
Cloudflare
Railway
Netlify
OpenRouter
AG Grid
SerpAPI
Clerk
WorkOS
Unkey
Prisma
Sentry
Electric
Table API Reference
Column API Reference
Row API Reference
Cell API Reference
Header API Reference
Features API Reference
Static Functions API Reference
Legacy API Reference
Static Functions API Reference

row_getAllCells

Function: row_getAllCells()

ts
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.

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)
const cells = row_getAllCells(row)