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