afterShow
fires after a control is shown
afterShow: (value: object[]) => void;
Parameters:
value: array
- the current value of the control
Example
form.getItem("simplevault").events.on("afterShow", function(value) {
console.log("afterShow", value);
});
Change log:
added in v7.0