I have a pretty simple grid
works well however I am confused about the pager bar
even the most basic grid in the demos show more information than mine.
all I see are the page numbers themselves and the ellipse to indicate more than 10 pages
I have tried setting the messages: but that doesn't work either
How can I get the prevnext page x of x totals rows etc... to show? like...
var element = $("#grid").kendoGrid({ dataSource: { pageSize: 10, type: "json", transport: { read: { url: queryurl, dataType: "json" } }, schema: { data: "data", total: "total" } }, detailInit: detailInit, selectable: true, sortable: true, filterable: true, columnMenu: true, columns: [ { field: "PackageID", width: 90, title: "Package ID" } , { width: 50, field: "Installations", title: "Installations" } , { field: "InstalledPackage", width: 100, title: "Installed Package" } , { width: 100, field: "ApplicationName", title: "Application Name" } , { width: 100, field: "Windows7Certified", title: "Win7 Certified" } , { width: 120, field: "RecommendedVersion", title: "Recommended Version" } ], pageable: { numeric: true, previousNext: true, refresh: true, pageSizes: [ 10 , 25, 50 ] }, }); } }).data("kendoComboBox");works well however I am confused about the pager bar
even the most basic grid in the demos show more information than mine.
all I see are the page numbers themselves and the ellipse to indicate more than 10 pages
I have tried setting the messages: but that doesn't work either
How can I get the prevnext page x of x totals rows etc... to show? like...
pageable: { numeric: true, refresh: true, pageSizes: [ 10 , 25, 50 ], previousNext: true, input: true, info:true},