Categories | Question details Back To List | ||
We are
using the grid which will have vertical scroll bar and we remove and add the
rows (Refresh the data i... We are using the grid which will have vertical scroll bar and we remove and add the rows (Refresh the data in the grid) in a fixed interval. When the user is scrolling down and views the data which is below at the time of refresh, the scroll moves up automatically confusing the user. Is there any way to avoid this behavior and update the grid seamlessly? Answer posted on Mar 14, 2007 14:22 There is no direct way to refresh scrolling state of grid. It has a method grid.moveToVisible(this.getRowById(row_id).cells[0]); which can scroll grid to necessary row, but it’s not very useful in your case. You can use next code (it’s not public and can be changed in next versions of grid): var z=mygrid.objBox.scrollTop; ... refresh mygrid.objBox.scrollTop=z;Answer posted by Darya (Support) on Dec 08, 2014 21:35 If you haven't found the needed information there and still looking for a solution, you will find the additional help checking tabs with javascript and event calendar in javascript. |