SMART datagrid v1.4 > Classes > ColumnGroup
매개변수 column으로 지정된 컬럼이 이 컬럼그룹에 포함되어 있고, 컬럼의 GridColumn.index가 매개변수 newIndex와 다르면, 컬럼을 newIndex 위치로 이동시킨다. 표시 위치 변경은 setVisibleIndex로 할 수 있다.
var col = grid.focusedIndex().columm();
if (col && col.group()) {
col.group().setChildIndex(col, col.index() + 1);
}