My use case is the following:
Having a table like:
+------------------------------+ | NOTICE | This is notice #1 | | WARNING | This is warning #1 | | NOTICE | This is notice #2 | | ERROR | This is error #1 | +------------------------------+
I'd like to have a specific background color for the whole rows depending of the value of first column.
To implement this, I'd like to make use of a class applied on the row so that I can skin it easily with:
tr.NOTICE td {background-color: Yellow}
tr.WARNING td {background-color: Orange}
tr.ERROR td {background-color: OrangeRed}
Not sure it is possible with jqGrid, maybe with a Custom Formatter? No idea how
Thanks in advance