Style of row edited in datatable

I have one doubt, I´m using a dataprocesor in a datatable, in dhtmlx, when you change in data of any column, all columns change with font-weight bold. So de dp of webix can do the same or i need to that manually?

Hey @Dalaz, please take a look at this snippet: https://snippet.webix.com/ffsnmtk9.
We can use the onAfterEditStop event to get the row we need, check for the correct criteria and apply css afterwards.

And to clear styles after data saving, you can use something like

webix.dp($$("table")).attachEvent("onAfterSave", function(r, id){
  $$("table").removeRowCss(id, "edited");
});