focus
fires when a Checkbox control has received focus
focus: (value: string | boolean) => void;
Parameters:
value: string | boolean
- the current value of the control
Example
form.getItem("checkbox").events.on("focus", (value) => {
console.log("focus", value);
});
Change log:
Added in v7.2