SMART datagrid v1.4 > Classes > ColumnGroup

Back  Forward

DataLudi.ColumnGroup.removeAt  method

매개변수 index로 지정한 위치가 0 이상이고 ColumnGroup.count보다 작으면, 해당 위치의 컬럼을 제거하고 true를 리턴한다. 그렇지 않으면 false를 리턴한다. 

function removeAt (index: Integer): Boolean;
Returns
Boolean
Parameters
index - Integer. required.
Code -1
    var col = grid.focusedIndex().column();
    if (col && col.group()) {
        col.group().removeAt(col.index());
    }
See Also
add
remove
clear
GridColumn
GridColumn.index
Examples
Column Grouping