New to Kendo UI for Angular? Start a free 30-day trial
PagerPosition
Sets the position of the Grid pager.
The available values are:
top
—Renders the pager above the Grid headers.bottom
—(Default) Renders the pager below the data table.both
—Renders two pagers: one above the Grid headers and one below the data table.
html
<kendo-grid [pageable]="{ position: 'both' }">
<kendo-grid-column field="ProductID"></kendo-grid-column>
...
</kendo-grid>
type
PagerPosition = "top" | "bottom" | "both";