Data Models guide

SSRM Pagination data grid documentation

Use SSRM pagination when users expect pages instead of endless scrolling.

What it means

SSRM pagination switches the server row model from a scrolling cache into page-sized windows driven by the pager.

When to use it

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.

Implementation notes

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.

Relevant API

Start with serverRowModel.rowCount, serverRowModel.blockSize, serverRowModel.getRows, serverRowModel.pagination, serverRowModel.pagination.enabled. Open the live API reference for types and defaults.