SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.invalidate  method

Request the browser to draw the grid again. 

In order to request to arrange columns again, you can call invalidateLayout or refreshView. In most cases, when should enable to draw the grid again, you can call refreshView

function invalidate ();
Returns
Void
Code -1
    $('btnRefresh').click(function () {
        grid.invalidate();
    });
See Also
invalidateLayout
refreshView
Examples
Hello Grid