blur
fires when a ToggleGroup control has lost focus
blur: (value: {[id: string]: boolean | string | number}, id: string) => void;
Parameters:
value: object
- the current value of the control. The object contains a set of key:value pairs where the key is the id of a toggle and the value is the value/state of a toggleid: string
- the id of a toggle of the ToggleGroup control
Example
form.getItem("toggleGroup").events.on("blur", (value, id) => {
console.log("blur", value, id);
});