focus
fires when a CheckboxGroup control has received focus
focus: (value: ICheckboxGroupValue, id: string) => void;
Parameters:
value: object
- the current value of the controlid: string
- the id of the checkbox of the CheckboxGroup control
Example
form.getItem("checkboxGroup").events.on("focus", (value, id) => {
console.log("focus", value, id);
});
Change log:
added in v7.2