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