Skip to content

keyPressTimeout

a delay between the key press and the action

let keyPressTimeout: number
webix.grid({
keyPressTimeout:500,
on:{
onTimedKeyPress:() => {
// some action here
console.log("Enter pressed");
}
}
});