Hi,
I would like to add a CSS class name to a row depending on the value of a cell in the row. I tried the following code but it dos not work … any help please ?
Best regards, Frédéric
myGrid.forEachRow(function(idLigne) {
var className=myGrid.cells(idLigne,2).getValue();
myGrid.setRowAttribute(idLigne,"class",className);
});