afterHide
fires after a control is hidden
afterHide: (value: object[], init: boolean) => void;
Parameters:
value: array
- the current value of the controlinit: boolean
- true, if the event is triggered on the control initialization; otherwise, false
Example
form.getItem("simplevault").events.on("afterHide", function(value, init) {
console.log("afterHide", value, init);
});
Change log:
added in v7.0