afterHide
fires after a control is hidden
afterHide: (value: ICheckboxGroupValue, init: boolean) => void;
Parameters:
value: object
- the current value of the control. The object contains a set of key:value pairs where key is the id of a checkbox and value is the value/state of the checkbox.init: boolean
- true, if the event is triggered on the control initialization; otherwise, false
Example
form.getItem("CheckboxGroup").events.on("afterHide", function(value, init) {
console.log("afterHide", value, init);
});