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