pageable.info Boolean
(default: true)
If set to true
the pager will display information about the current page and total number of data items. By default the paging information is displayed.
Example - hide the paging information
<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,
info: false
}
});
</script>