afterShow
fires after a control or its radio button is shown
afterShow: (value: string, id?: string) => void;
Parameters:
value: string
- the current value of the controlid?: string
- optional, the ID of the radio button of the control
Example
form.getItem("radiogroup").events.on("afterShow", function(value, id) {
console.log("afterShow", value, id);
});
Related sample: Form. Hide/Show control
Change log:
- The id parameter was added in v8.0
- The event was added in v7.0