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