I would like to scroll to selected cell/row and I would like the same design as if the user would navigate throug key down/up. That means when navigating down, selected row would be the last in grid scroll, and when navigating up, selected row would be first.
How can I achieve that? I am pretty sure that I must call some method (already written for keyboard navigation), just don't know which.
I tried with this, but it does not give me the exact result I want (for scrolling down):
var
itemScrollTop = grid.select()[0].offsetTop;
grid.wrapper.find(
'.k-grid-content.k-auto-scrollable'
).animate({ scrollTop: itemScrollTop });