Validate single editor on "blur"

Hi,

I tray to validate editor in datatable when exit editor “blur” in onAfterEditStop but the editor.value not is correct.

If editor is “name” and change to “names” the editor.value maintain “name” not new value “names” :(.

Some idea?

Thanks in advance.

 onAfterEditStop: function (state, editor, ignore) {
                    var cIndex = this.getColumnIndex(editor.column);
                   
                    //editor value here is old value :(
                    checkEqual(editor.value);

                    webix.message(editor.value);
                    
                },

Hello,
Please check the info about onAfterEditStop
The current value you can find by state.value
Example: https://snippet.webix.com/t7wrwpgr

Thanks so much!