I have a grid that i need to set:
scrollable: {
virtual: true
},
When users edit a cell then updates (or onSave(e)) their changes. The grid resets back to the top of the page. I don't know why. Users lose their place every time they try to change a cells contents.
When i make
scrollable: false,
it stays put. I think this is a huge bug in Telerik Kendo. Has anyone figured out how to stay in place on the grid after saving changes?
UPDATE
This problem only occurs in IE 11. Unfortunately my client can only use IE11.
The answer is to save your current location before you bind.
in
I think this works for you:
Use
GridViewRowInfo
to get row info of selected row and set scroll to your custom row and column.