beforeHide
fires before a control is hidden
beforeHide: (value: string | number | boolean, init: boolean) => boolean | void;
Parameters:
value: string | number | boolean
- the current value of the controlinit: boolean
- true, if the event is triggered on the control initialization; otherwise, false
Returns:
Return false
to prevent a control from being hidden; otherwise, true
.
Example
form.getItem("toggle").events.on("beforeHide", function(value, init) {
console.log("beforeHide", value, init);
return true;
});