fires after typing has been finished in the field
text.attachEvent("onTimedKeyPress", function(){
//code
});
The event doesn't occur during typing, but it occurs after some delay in typing.
It is a best play to start filtering or some other heavy operation.
You can change default 250ms delay by using keyPressTimeout property.
webix.ui({
view:"search",
keyPressTimeout:100 // 100ms delay
});