New to Kendo UI for jQueryStart a free 30-day trial

ButtonCount

configuration

Defines the number of buttons displayed in the numeric pager.

Default: 10

<div id="pager"></div>

<script>
    var dataSource = new kendo.data.DataSource({
      data: [
        { productName: "Tea", category: "Beverages" },
        { productName: "Coffee", category: "Beverages" },
        { productName: "Ham", category: "Food" },
        { productName: "Bread", category: "Food" }
      ],
      pageSize: 2
    });


    $("#pager").kendoPager({
      dataSource: dataSource,
      buttonCount: 1
    });

    dataSource.read();
</script>
<style>
    #pager {
      margin-top: 100px;
    }
</style>
Not finding the help you need?
Contact Support