Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Nov 10, 2008 17:53
open dhtmlx forum
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);