SMART datagrid v1.4 > Classes > GridBase

Back  Forward

DataLudi.GridBase.invalidate  method

그리드를 다시 그리도록 브라우저에게 요청한다. 

컬럼 배치 등을 다시 하도록 요청하기 위해서는 invalidateLayout이나 refreshView를 호출한다. 대개의 경우 그리드를 다시 그리게 할 필요가 있을 때는 refreshView를 호출하면 된다. 

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