Hello!
I change row background color after grid binding complete and use method setcolumnproperty() after event onBindingComplete.
Object.getOwnPropertyNames(MyRowModel).forEach(key => {
this.dataGrid.setcolumnproperty(key, “cellclassname”, function(
index
) {
// any logic if()else
return “bg-danger-lighter”;
});
});
This is not optimal if grid have many columns and items, because every cell is checked, instead of checking only rows for value. Application freezes up
Maybe jqxgrid have another solution for this?
jqxgrid need for setRowProperty method