afterShow
fires after a control is shown
afterShow: (value: object) => void;
Parameters:
value: object
- the current value of the control
Example
form.getItem("avatar").events.on("afterShow", value => {
console.log("afterShow", value);
});
fires after a control is shown
value: object
- the current value of the controlExample
form.getItem("avatar").events.on("afterShow", value => {
console.log("afterShow", value);
});