How do I scroll to a cell and make it visible? I can get to cell by the following:
mygrid.cells2(rowIndex,colIndex)
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);