Charl,
I do this conditional row coloring a lot. More precisely, it is cell coloring for the individual cells on a row. Here is what works for me:
1. Create your color css in the custom.css file. Something as simple as:
.greenback {
color:black;
background: #A9F5A9 !important;
}
2. In your NetWebBrowse procedure, in the Inside Browse Loop / Before Table Rows embed, put your test code. I use a local variable to hold the result of the test. For example:
IF conditionA and conditionB
LOC:ColorResult = 'green'
END
3. In your NetWebBrowse settings, you set a conditional setting on the Conditional Tab for each field on the row that you want to color. For example:
Condition: LOC:ColorResult = 'green'
CSS Class: 'greenback'
You have to do that conditional test for each cell on the row that you want colored. I don't think you can color the entire row except by doing each cell on the row.
Hope that helps,
Mike Springer