row_getLeftVisibleCells

Function: row_getLeftVisibleCells()

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