row_getRightVisibleCells

Function: row_getRightVisibleCells()

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