Defined in: features/row-pinning/rowPinningFeature.types.ts:61
TFeatures extends TableFeatures
TData extends RowData
getBottomRows: () => Row<TFeatures, TData>[];
Defined in: features/row-pinning/rowPinningFeature.types.ts:68
Returns all bottom pinned rows.
Row<TFeatures, TData>[]
getCenterRows: () => Row<TFeatures, TData>[];
Defined in: features/row-pinning/rowPinningFeature.types.ts:72
Returns all rows that are not pinned to the top or bottom.
Row<TFeatures, TData>[]
getIsSomeRowsPinned: (position?) => boolean;
Defined in: features/row-pinning/rowPinningFeature.types.ts:76
Returns whether or not any rows are pinned. Optionally specify to only check for pinned rows in either the top or bottom position.
boolean
getTopRows: () => Row<TFeatures, TData>[];
Defined in: features/row-pinning/rowPinningFeature.types.ts:80
Returns all top pinned rows.
Row<TFeatures, TData>[]
resetRowPinning: (defaultState?) => void;
Defined in: features/row-pinning/rowPinningFeature.types.ts:84
Resets the rowPinning state to initialState.rowPinning, or true can be passed to force a default blank state reset to { top: [], bottom: [], }.
boolean
void
setRowPinning: (updater) => void;
Defined in: features/row-pinning/rowPinningFeature.types.ts:88
Sets or updates the state.rowPinning state.
void