afterShow
fires after a control is shown
afterShow: (value: ICheckboxGroupValue) => 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.
Example
form.getItem("CheckboxGroup").events.on("afterShow", function(value) {
console.log("afterShow", value);
});