What it means
SSRM pagination switches the server row model from a scrolling cache into page-sized windows driven by the pager.
Data Models guide
Use SSRM pagination when users expect pages instead of endless scrolling.
SSRM pagination switches the server row model from a scrolling cache into page-sized windows driven by the pager.
Use it when users expect page numbers, next/previous controls, or fixed page sizes. Reach for this mode when endless scroll feels too open-ended for reporting or audit screens.
SSRM pagination still uses `getRows`; the difference is that the pager now controls the requested window. Keep the top-level `pagination` prop and `serverRowModel.pagination.enabled` aligned so the UI and request flow stay in sync.
Start with serverRowModel.rowCount, serverRowModel.blockSize, serverRowModel.getRows, serverRowModel.pagination, serverRowModel.pagination.enabled. Open the live API reference for types and defaults.