blur
fires when a Button control has lost focus
blur: (text: string) => void;
Parameters:
text: string
- the current text value of the control
Example
form.getItem("button").events.on("blur", (text) => {
console.log("blur", text);
});
Change log:
added in v7.2