SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.makeCellVisible  method

If the data cell specified by parameter index is beyond the range of grid screen, it will horizontally and vertically scroll so as to display the cell. 

function makeCellVisible (index: CellIndex);
Returns
Void
Parameters
index - CellIndex.
Code -1
    var idx = new DataLudi.CellIndex(100, grid.visibleColumnCount() - 1);
    grid.makeCellVisible(idx);
See Also
makeColumnVisible
makeRowVisible