keydown
fires when any key is pressed and a checkbox of the CheckboxGroup control is in focus
keydown: (event: KeyboardEvent, id: string) => void;
Parameters:
event: KeyboardEvent
- a native KeyboardEvent objectid: string
- the id of a checkbox of the CheckboxGroup control
Example
form.getItem("CheckboxGroup").events.on("keydown", function(event, id) {
console.log(event, id);
});
Change log:
added in v7.2