New to Kendo UI for Angular? Start a free 30-day trial

PagerPosition

The position of the Grid pager.

The available values are:

  • top—The pager is rendered above the Grid headers.
  • bottom—(Default) The pager is rendered below the data table.
  • both—Two pagers are rendered - one above the Grid headers, and one - below the data table.
<kendo-grid [pageable]="{ position: 'both' }">
  <kendo-grid-column field="ProductID"></kendo-grid-column>
  ...
</kendo-grid>

type PagerPosition = "top" | "bottom" | "both";

In this article

Not finding the help you need?