function table_getRowCount<TFeatures, TData>(table): number;function table_getRowCount<TFeatures, TData>(table): number;Defined in: features/row-pagination/rowPaginationFeature.utils.ts:395
Resolves the total row count used for pagination math.
options.rowCount wins for manual pagination. Otherwise the count comes from the pre-paginated row model so filtering, grouping, sorting, and expansion are reflected before the page slice is applied.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
number
const rows = table_getRowCount(table)const rows = table_getRowCount(table)