Are there any out of the box solutions to have conditional formatting of HTML tables?
With conditional formatting I am more interested in having different colors as cell
You could set up some css classes:
.row { background-color: #00ff00; } .alt { backgorund-color: #ff00ff; } <cell contents go here> <cell contents go here>
The jquery option is also simple, but this is how I would do it honestly.
HTH