focus
fires when a Combo control has received focus
focus: (ids: (string | number) | (string | number)[]) => void;
Parameters:
ids: (string | number) | (string | number)[]
- the ID(s) of the option(s) from data collection that are currently selected in the control
Example
form.getItem("combo").events.on("focus", (ids) => {
console.log("focus", ids);
});
Change log:
Added in v7.2