afterShow
fires after a control is shown
afterShow: (ids: (string | number) | (string | number)[]) => void;
Parameters:
ids: string | number | (string | number)[]
- the ID(s) of the option(s) that are currently selected in the control
Example
form.getItem("combo").events.on("afterShow", function(ids) {
console.log("afterShow", ids);
});
Change log:
added in v7.0