New to Kendo UI for Vue? Start a free 30-day trial
GridPagerType
Updated on Oct 30, 2025
The type of the Grid pager.
The available values are:
numeric—Buttons with numbers.input—An input field for typing the page number.
tsx
<Grid
:data-items="products"
:columns="columns"
:pageable="{ type: 'numeric'}">
</Grid>
type GridPagerType = "numeric" | "input";