SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.beginUpdate  method

When changing grid properties, it will not request to draw again until endUpdate is called. 

function beginUpdate ();
Returns
Void
Code -1
    grid.beginUpdate();
    try {
        // These two functions are called from the most properties or functions which change the grid contents.
        grid.invalidate();
        grid.invalidateLayout();
    } finally {
        grid.endUpdate();
    }    
See Also
endUpdate
refreshView