focus
fires when an Avatar control has received focus
focus: (value: object) => void;
Parameters:
value: object
- the current value of the control
Example
form.getItem("avatar").events.on("focus", value => {
console.log("focus", value);
});
fires when an Avatar control has received focus
value: object
- the current value of the controlExample
form.getItem("avatar").events.on("focus", value => {
console.log("focus", value);
});