onAfterEditStop event

What could be the reason that I always get ignoreUpdate as undefined for onAfterEditStop(object state,object editor,boolean ignoreUpdate)event . What is the use of ignoreUpdate flag?

ignoreUpdate is an informative parameter and you cannot change its value programmatically.

It becomes ‘true’ when editor closes without an attempt to do any changes (for example, if you close it using Esc key).

http://webix.com/snippet/c4f4af12

ignoreUpdate is set to true only if we close editor using Esc key but other scenarios it stays undefined. for eg if we click on some diff cell or press tab. Actually I am trying to solve a prblem where I need to identify whether the cell is updated or not. This is not possible by just comparing the State.Old != State.value. Since I may have same values entered/selected thru dropdown. Bascially I want to distunguish user actions whether the user has expcitly selected same selector value or just tab-in and out of cell. Can you please help on this??

any suggestions?

The only solution I can suggest is to track the dropdown click. All drop-down editors except the html-basedselect have a propertysuggest, from where you can get the popup body (a list) and attach theonItemClick event:

http://webix.com/snippet/bbdf3a68