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