SMART datagrid v.1 > Classes > ColumnGroup
パラメーターtagと同一のtagプロパティーの値を持つ最初の[[c.GridColumn]カラムをリターンする。 存在しなければnullをリターンする。
var group = grid.focusedIndex().group();
if (group) {
var col = group.columnByTag('tag');
col && col.styles().setBackground('#33ff0000');
}