Catch editor onChange event in DataTable?

What is the correct way to check for editor changes (editor: “combo”, editor: “date”, editor: “text”) in a DataTable?

You can set onAfterEditStop event

Ok that does work. However, I have select editors on the row, and I would like to see the onAfterEditStop/select.onChange event fire when I change the value in the select. The onAfterEditStop event only fires when I tab out of the cell.

onAfterEditStop is fired when editor value is changed ( the value is selected in popup or “enter” is pressed).

http://webix.com/snippet/29d0088e

You can try to use a “richselect” instead of the “select” control, it will close editor after new value selection, so you will have onAfterEditStop event just after choosing a value.