SMART datagrid v.1 > Classes > GridBase
Return the first Column connected to DataField specified by field.
field can be the field index or field name. If ignoreCase is true when specifying as field name, it will not be case sensitive. You can get all column list connected to one field through columnsByField.
$('#check').click(function () {
var column = grid.columnByField('fldAddr');
if (column) {
column.setStyles({
background: '#1000ff00'
}
}
});