SMART datagrid v.1 > Classes > ColumnGroup
パラメーターindexで指定した位置が0以上でColumnGroup.countより小さければ、 該当位置のカラムを削除してtrueをリターンする。 そうでなければfalseをリターンする。
var col = grid.focusedIndex().column();
if (col && col.group()) {
col.group().removeAt(col.index());
}