SMART datagrid v.1 > Classes > ColumnGroup
Return the first Column which has the same tag property value as parameter tag. If not exist, it will return null.
var group = grid.focusedIndex().group();
if (group) {
var col = group.columnByTag('tag');
col && col.styles().setBackground('#33ff0000');
}