Hi, is there any way to change the whole row’s color. My code as below does not work.
<style>
.stocked_product {
color: red;
}
</style>
var product_grid = new dhx.Grid(null, {
...
rowCss: function (row) {
return row.InventoryQuantity ? "stocked_product" : "";
}
});