SMART datagrid v1.4 > Classes > GridStyles

Back  Forward

DataLudi.GridStyles.beginUpdate  method

이 메쏘드를 호출하면 endUpdate가 호출되기 전까지, 속성들이 변경돼도 변경 내용이 스타일 소유자에게 반영되지 않는다. 여러 스타일 값들을 동시에 변경하고자 할 때 사용할 수 있다. 

function beginUpdate ();
Returns
Void
Code -1
    var styles = column.styles();
    styles.beginUpdate();
    try {
        styles.setBackground($('#background').val());
        styles.setForeground($('#foreground').val());
        ...
    } finally {
        styles.endUpdate();
    }    
See Also
endUpdate
스타일 개요
Examples
Column Styles