Docs
CodeRabbit
Cloudflare
Railway
Clerk
WorkOS
SerpAPI
OpenRouter
AG Grid
Netlify
Unkey
Electric
Prisma
Sentry
CodeRabbit
Cloudflare
Railway
Clerk
WorkOS
SerpAPI
OpenRouter
AG Grid
Netlify
Unkey
Electric
Prisma
Sentry
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_getLeftVisibleCells

Function: row_getLeftVisibleCells()

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

Defined in: features/column-pinning/columnPinningFeature.utils.ts:215

Collects visible cells for columns pinned to the left region.

Cells are returned in state.columnPinning.left order and are marked with cell.position = 'left'.

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Parameters

row

Row<TFeatures, TData>

Returns

Cell<TFeatures, TData, unknown>[]

Example

ts
const leftCells = row_getLeftVisibleCells(row)
const leftCells = row_getLeftVisibleCells(row)