SMART datagrid v.1 > Classes > ColumnGroup
If Column object specified by parameter column is being included as child of this group, it will remove the column from group and return true. Else, it will return false.
var col = grid.focusedIndex().column();
if (col && col.group()) {
col.group().remove(col);
}