pageable.previousNext Boolean
(default: true)
If set to true
the pager will display buttons for going to the first, previous, next and last pages. By default those buttons are displayed.
Example - hide the first, previous, next, and last 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,
previousNext: false
}
});
</script>