uploadProgress
fires on each percent of files uploading
uploadProgress: (progress: number, value: object[]) => void;
Parameters:
progress: number
- the current percent of files uploading, a number from 0 to 100value: array
- the current value of the control
Example
form.getItem("simpleVault").events.on("uploadProgress", function(progress, value) {
console.log("uploadProgress", progress, value);
});
Change log:
The value parameter is added in v7.0.