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