New to KendoReact? Learn about KendoReact Free.
KendoReact Grid Numeric Pagination
Updated on Aug 14, 2026
Numeric paging in the KendoReact Grid allows users to navigate through pages using numbered buttons and a dropdown component allowing you to control the items per page.
Enabling Numeric Paging
To enable numeric paging in Grid, follow these steps:
- Enable the
autoProcessDataprop to allow the Grid to handle paging automatically. - Set the
pageableprop of the Grid to enable pagination. - (Optional) Set the
defaultTakeprop to define the number of items rendered initially. - (Optional) Use the
defaultSkipprop to specify the number of items to be skipped initially, determining the starting page.
The following example demonstrates how to implement numeric paging using the built-in state management of the KendoReact Grid.
Loading ...
Responsive Pager
The responsive Pager is enabled by default. To disable the responsive functionality, set the responsive property of the GridPagerSettings object to false
The following example demonstrates the responsive Pager in action.
Loading ...