SMART datagrid v.1 > Classes > GridBase
It will be called together with beginUpdate to avoid to request rendering again during changing several grid properties.
grid.beginUpdate();
try {
// These two functions will be called from most properties or functions which change grid contents.
grid.invalidate();
grid.invalidateLayout();
} finally {
grid.endUpdate();
}