SMART datagrid v.1 > Classes > ColumnGroup
If the location specified by parameter index is greater than 0 and less than ColumnGroup.count, it will remove Column of corresponding location and return true. Else, it will return false.
var col = grid.focusedIndex().column();
if (col && col.group()) {
col.group().removeAt(col.index());
}