SMART datagrid v1.4 > Classes > ColumnGroup

Back  Forward

DataLudi.ColumnGroup.remove  method

매개변수 column으로 지정한 컬럼객체가 이 그룹의 자식으로 포함되어 있다면, 컬럼을 그룹에서 제거하고 true를 리턴한다. 그렇지 않으면 false를 리턴한다. 

function remove (column: GridColumn): Boolean;
Returns
Boolean
Parameters
column - GridColumn. required.
삭제할 컬럼 객체.
Code -1
    var col = grid.focusedIndex().column();
    if (col && col.group()) {
        col.group().remove(col);
    }
See Also
add
removeAt
clear
Examples
Column Grouping