1// bind to 'change' event
2function onChangeSelection(e) {
3
4 // animate our scroll
5 this.element.find(".k-grid-content").animate({ // use $('html, body') if you want to scroll the body and not the k-grid-content div
6 scrollTop: this.select().offset().top // scroll to the selected row given by 'this.select()'
7 }, 400);
8}
9