blur
fires when a Combo control has lost focus
blur: (value: Id | Id[]) => void;
Parameters:
value: (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", (value) => {
console.log("blur", value);
});
Change log:
added in v7.2