SMART datagrid v1.4 > Classes > GridBase

Back  Forward

DataLudi.GridBase.beginUpdate  method

그리드 속성들 변경 시 endUpdate가 호출될 때까지 다시 그리기 요청을 하지 않는다. 

function beginUpdate ();
Returns
Void
Code -1
    grid.beginUpdate();
    try {
        // 이 두 함수는 그리드 내용을 변경하는 대부분의 속성이나 함수들에서 호출된다.
        grid.invalidate();
        grid.invalidateLayout();
    } finally {
        grid.endUpdate();
    }    
See Also
endUpdate
refreshView