onTimedKeyPress

fires after typing has been finished in the field

void onTimedKeyPress();

Example

text.attachEvent("onTimedKeyPress", function(){
    //code
});

Details

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
});
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
If you have not checked yet, be sure to visit site of our main product Webix popular javascript framework and page of TreeMap product.