SMART datagrid v.1 > Classes > ColumnGroup
パラメーターcolumnで指定したカラムがこのカラムグループに含まれてあり、 カラムのGridColumn.indexがパラメーターnewIndexと違うと、 カラムをnewIndex位置に移動させる。 表示位置の変更はsetVisibleIndexでできる。
    var col = grid.focusedIndex().columm();
    if (col && col.group()) {
        col.group().setChildIndex(col, col.index() + 1);
    }