New to Kendo UI for Angular? Start a free 30-day trial
PagerType
Defines the type of the Grid pager.
The available values are:
numeric
—Shows buttons with numbers.input
—Shows an input for typing the page number.
html
<kendo-grid [pageable]="{ type: 'numeric' }">
<kendo-grid-column field="ProductID"></kendo-grid-column>
</kendo-grid>
type
PagerType = "numeric" | "input";