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