keydown
fires when any key is pressed and the Timepicker control is in focus
keydown: (event: KeyboardEvent) => void;
Parameters:
event: KeyboardEvent
- a native KeyboardEvent object
Example
form.getItem("timepicker").events.on("keydown", function(event) {
console.log(event);
});
Change log:
added in v7.2