Datatable cssFormat Checkbox

The checkbox doesn’t seem to trigger the cssformat the same way as the other editors.

http://webix.com/snippet/1fd627e1

How do I change a cells css based on a checkbox?

Checkbox changes the item’s object directly. The same as

dtable.getItem(id).key = "new value"

This way itself doesn’t trigger any event (the data update as well). Therefore, cssFormat won’t be applied. After such editing, you need to use updateItem:

http://webix.com/snippet/c2aaa14c

Brilliant cheers for your help