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