pageable.numeric Boolean (default: true)

If set to true the pager will display buttons for navigating to specific pages. By default those buttons are displayed.

Using pageable.numeric and pageable.input at the same time is not recommended.

Example - hide the numeric pager buttons

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "productName" },
    { field: "category" }
  ],
  dataSource: [
    { productName: "Tea", category: "Beverages" },
    { productName: "Coffee", category: "Beverages" },
    { productName: "Ham", category: "Food" },
    { productName: "Bread", category: "Food" }
  ],
  pageable: {
    pageSize: 2,
    numeric: false
  }
});
</script>
In this article