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