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

Function: row_getRightVisibleCells()

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

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

Collects visible cells for columns pinned to the right region.

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

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Parameters

row

Row<TFeatures, TData>

Returns

Cell<TFeatures, TData, unknown>[]

Example

ts
const rightCells = row_getRightVisibleCells(row)
const rightCells = row_getRightVisibleCells(row)