SMART datagrid v.1 > Classes > GridBase
When changing grid properties, it will not request to draw again until endUpdate is called.
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();
}