afterShow
fires after a control is shown
afterShow: () => void;
Example
form.getItem("spacer").events.on("afterShow", function() {
console.log("afterShow");
});
Change log:
- The value parameter was removed in v8.0
fires after a control is shown
Example
form.getItem("spacer").events.on("afterShow", function() {
console.log("afterShow");
});
Change log: