blur
fires when the control has lost focus
blur: (value: object) => void;
Parameters:
value: object
- the current value of the control;
Example
form.getItem("avatar").events.on("blur", value => {
console.log("blur", value);
});
fires when the control has lost focus
value: object
- the current value of the control;Example
form.getItem("avatar").events.on("blur", value => {
console.log("blur", value);
});