a delay between the key press and the action
webix.ui({
view:"some",
keyPressTimeout:500,
hotkey:"enter",
on:{
onTimedKeyPress:() => {
// some action here
webix.message("Enter pressed");
}
}
});
Back to top