Hello,

I have a cWebgrid in my webapp where I want to give some cells a different text color. As I am filling the grid I do a:

Code:
Move "WarningCell" to aTheRows[iCount].aCells[0].sCssClassName
In my application.css I added a entry:

Code:
#OWEBAPP .WarningCell {
    color: red;
}
But the text color does not change. What am I missing?

Regards,

Leon Raafs