function table_getCanNextPage<TFeatures, TData>(table): boolean;function table_getCanNextPage<TFeatures, TData>(table): boolean;Defined in: features/row-pagination/rowPaginationFeature.utils.ts:268
Checks whether the current page index can move forward.
A pageCount of -1 means the caller does not know the total page count, so this returns true. A page count of 0 returns false.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
boolean
const canGoForward = table_getCanNextPage(table)const canGoForward = table_getCanNextPage(table)