How can I get the new value of an text editor in ui.Property when it’s editing?
is there any keyboard event can do it?
http://webix.com/snippet/0a6fb206
Use the onTimedKeyPress
event, as it fires AFTER the value has been changed:
onTimedKeyPress : function(){
webix.message(this.getEditor().getValue());
}
That’s awesome! Thanks a lot, Helga!