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