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