function table_getPageCount<TFeatures, TData>(table): number;function table_getPageCount<TFeatures, TData>(table): number;Defined in: features/row-pagination/rowPaginationFeature.utils.ts:370
Resolves the number of pages for the current pagination state.
options.pageCount wins for manual pagination. Otherwise the value is calculated from table_getRowCount(table) and the current pageSize.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
number
const pages = table_getPageCount(table)const pages = table_getPageCount(table)