SMART datagrid v.1 > Classes > GridBase
Return all Columns being connected to DataField specified by field as array.
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 the first column connected to the field through columnByField. If there is no corresponding column, it will return null.
$('#check').click(function () {
var columns = grid.columnsByField('fldAddr');
if (columns) {
for (var i = columns.length; i--;) {
columns[i].setStyles({
background: '#1000ff00'
}
}
}
});