uploadComplete
fires when upload is completed
uploadComplete: (value: object) => void;
Parameters:
value: object
- the current value of the control
Example
form.getItem("avatar").events.on("uploadComplete", (value) => {
console.log("uploadComplete", value);
});