function table_getCanPreviousPage<TFeatures, TData>(table): boolean;function table_getCanPreviousPage<TFeatures, TData>(table): boolean;Defined in: features/row-pagination/rowPaginationFeature.utils.ts:250
Checks whether the current page index can move backward.
The first page is page index 0, so only positive page indexes can navigate to a previous page.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
boolean
const canGoBack = table_getCanPreviousPage(table)const canGoBack = table_getCanPreviousPage(table)