telerik grid data automatically scroll to particular record in react

Solutions on MaxInterview for telerik grid data automatically scroll to particular record in react by the best coders in the world

showing results for - "telerik grid data automatically scroll to particular record in react"
Carter
14 May 2019
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