focus
fires when a Timepicker control has received focus
focus: (value: string | object) => void;
Parameters:
value: string | object
- the current value of the control
Example
form.getItem("timepicker").events.on("focus", (value) => {
console.log("focus", value);
});
Change log:
Added in v7.2