function table_setRowPinning<TFeatures, TData>(table, updater): void;function table_setRowPinning<TFeatures, TData>(table, updater): void;Defined in: features/row-pinning/rowPinningFeature.utils.ts:43
Routes a row pinning updater through the table's row-pinning change handler.
The updater may be a next { top, bottom } state or a function of the previous state, matching the instance table.setRowPinning behavior.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
void
table_setRowPinning(table, (old) => ({ ...old, top: [rowId] }))table_setRowPinning(table, (old) => ({ ...old, top: [rowId] }))