function table_setPageSize<TFeatures, TData>(table, updater): void;function table_setPageSize<TFeatures, TData>(table, updater): void;Defined in: features/row-pagination/rowPaginationFeature.utils.ts:199
Updates pagination.pageSize while preserving the current top row.
The new size is clamped to at least 1, and pageIndex is recalculated so the row that was previously at the top of the page remains in view.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
Updater<number>
void
table_setPageSize(table, (old) => old)table_setPageSize(table, (old) => old)