This is a migrated thread and some comments may be shown as answers.

[Solved] Navigatable, Virtual Scrollable - KB nav doesn't scroll grid

3 Answers 318 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Ed
Top achievements
Rank 1
Ed asked on 22 Oct 2014, 08:49 PM
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"

$("#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

3 Answers, 1 is accepted

Sort by
0
Accepted
Kiril Nikolov
Telerik team
answered on 24 Oct 2014, 08:26 AM
Hello Ed,

Scrolling the virtualized grid with keyboard navigation buttons is not supported. It is a feature that is not yet implemented, and if you want to see it implemented, then check the UserVoice section where you can post this as a suggestion.

Regards,
Kiril Nikolov
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Kiril Nikolov
Telerik team
answered on 12 Dec 2014, 09:12 AM
Hello Simon,

We will take a look and if the two items are duplicate we will merge them into one.

Thanks for bringing this up.

Regards,
Kiril Nikolov
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
Grid
Asked by
Ed
Top achievements
Rank 1
Answers by
Kiril Nikolov
Telerik team
Simon
Top achievements
Rank 1
Share this question
or