blur
fires when a control of Form has lost focus
blur: (name: string, value: any, id?: string) => void;
Parameters:
- name: string- the name (or id, if the name is not specified) of the control of Form
- value: any- the current value of the control
- id?: string- optional, the id of the element of the control of Form (for RadioGroup, CheckboxGroup)
Example
form.events.on("blur", function(name, value, id) {
    console.log(name, value, id);
});
Related sample: Form. Events
Change log:
added in v7.2