Categories | Question details Back To List | ||
dhtmlxgrid:Programatically scrollTo a row/cell How do I scroll to a cell and make it visible? I can get to cell by the following: mygrid.cells2(rowIndex,colIndex) Answer posted by Support on Nov 11, 2008 03:21 Grid supports grid.showRow(rowID); //scroll to row in question If you need exact cell to be visible grid.moveToVisible(grid.cells2(rowIndex,colIndex).cell); |