keyPressTimeout

a delay between the key press and the action

number keyPressTimeout;

Example

webix.ui({
    view:"some",
    keyPressTimeout:500,
    hotkey:"enter",
    on:{
      onTimedKeyPress:() => {
        // some action here
        webix.message("Enter pressed");
      }
    }
});

Back to top