I'm able to make this page scroll jump occur with build Q3 2015 using your example from above http://dojo.telerik.com/uwUno; howevever, I changed the grid to be defined this way. Scrollable, Multiple Selection, and Paging off.
$("#grid").kendoGrid({
dataSource: dataSource,
scrollable: {
virtual: true
},
selectable: "multiple",
pageable: false,
toolbar: ["create", "save", "cancel"],
columns: [
"ProductName",
{ field: "UnitPrice", title: "Unit Price", format: "{0:c}", width: 120 },
{ field: "UnitsInStock", title: "Units In Stock", width: 120 },
{ field: "Discontinued", width: 120 },
{ command: "destroy", title: " ", width: 150 }],
editable: true
});
Not sure how long this link is good for. http://dojo.telerik.com/@NerdBrick/etoyu
In Chrome and now Edge, the page will jump scroll up when you select a row. In IE 11 it doesn't do this.