afterHide
fires after a control is hidden
afterHide: (value: Id | Id[], init: boolean) => void;
Parameters:
value: 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(value, init) {
console.log("afterHide", value, init);
});
Change log:
added in v7.0