beforeShow
fires before a control is shown
beforeShow: (value: object[]) => boolean | void;
Parameters:
value: array
- the current value of the control
Returns:
Return false
to prevent a control from being shown; otherwise, true
.
Example
form.getItem("simplevault").events.on("beforeShow", function(value) {
console.log("beforeShow", value);
return true;
});
Change log:
added in v7.0