afterHide
fires after a control is hidden
afterHide: (value: object, init: boolean) => void;
Parameters:
value: object
- the current value of the controlinit: boolean
- true, if the event is triggered on the control initialization; otherwise, false
Example
form.getItem("avatar").events.on("afterHide", value => {
console.log("afterHide", value);
});