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