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