table_resetPagination

Function: table_resetPagination()

ts
function table_resetPagination<TFeatures, TData>(table, defaultState?): void;

Defined in: features/row-pagination/rowPaginationFeature.utils.ts:91

Resets pagination to the configured initial state or feature default.

With no argument, the reset clones table.initialState.pagination when it exists. Passing true ignores initial state and resets to { pageIndex: 0, pageSize: 10 }.

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Parameters

table

Table_Internal<TFeatures, TData>

defaultState?

boolean

Returns

void

Example

ts
table_resetPagination(table)
table_resetPagination(table, true)