Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Mike Addesa on Sep 13, 2007 03:09
open dhtmlx forum
Column background color

Is there a way to set the background color of a column?  For instance after filtering to visual cue as to what column is filtered?
Answer posted by Stanislav on Sep 13, 2007 12:45
This can't be set by API but next will work

grid.forEachRow(function(id){
    grid.cells(id,INDEX).setBgColor("red");
});