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