New to Kendo UI for Vue? Start a free 30-day trial
Kendo UI for Vue Data Grid Custom Pagination
Updated on Aug 14, 2026
Custom paging in the Kendo UI for Vue Data Grid lets you replace the default Pager with a component that matches your requirements.
Implementing a Custom Pager
You can render a custom Pager component in the Grid through its pager prop.
To use a custom pager:
- Set the
pageableprop totrue. - Set the
pagerprop to a custom component. - Handle the
pagechangeordatastatechangeevent to manage paging state.
The following example demonstrates a custom Pager that uses a Slider and NumericTextBox to navigate between pages.
Loading ...
Using a Custom Responsive Pager
To render a custom responsive Pager, pass a component to the Grid pager prop. The following example uses a Pager component with its responsive prop set to true.
The following example demonstrates how to implement a custom responsive pager.
Loading ...