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