When we use navigatable and virtual scrollable, and then try to navigate by the keyboard, the cell that indicates current selection moves down beyond the visible page but the scroll bar doesn't scroll. Is there a configuration to have the scrollbar scroll?
Note, this doesn't have to do with paging. Page-Down works well for that. I'm referring to the current page when the rows extend beyond the visible "window" of the grid.
The below is essentially the "Virtualization of remote data" demo from the Grids demo area with the addition of "navigatable: true"
Thanks,
--Ed
Note, this doesn't have to do with paging. Page-Down works well for that. I'm referring to the current page when the rows extend beyond the visible "window" of the grid.
The below is essentially the "Virtualization of remote data" demo from the Grids demo area with the addition of "navigatable: true"
$("#grid").kendoGrid({ dataSource: { type: "odata", serverPaging: true, serverSorting: true, pageSize: 100, transport: { } }, height: 543, scrollable: { virtual: true }, sortable: true, navigatable: true, columns: [ { field: "OrderID", title: "Order ID", width: 70 }, { field: "CustomerID", title: "Customer ID", width: 90 }, { field: "ShipName", title: "Ship Name", width: 220 }, { field: "ShipAddress", title: "Ship Address" }, { field: "ShipCity", title: "Ship City", width: 110 }, { field: "ShipCountry", title: "Ship Country", width: 110 } ]});Thanks,
--Ed