New to Kendo UI for AngularStart a free 30-day trial

Arguments for the uploadprogress event. The uploadprogress event fires when you upload files.

TS
 @Component({
   template: `
   <kendo-upload (uploadProgress)="uploadProgressEventHandler($event)"></kendo-upload>
   `
 })
 export class UploadComponent {
   public uploadProgressEventHandler(e: UploadProgressEvent) {
     console.log(e.files[0].name + ' is ' + e.percentComplete + ' uploaded');
   }
 }

Definition

Package:@progress/kendo-angular-upload

Properties

The files that you are currently uploading.

The upload progress as a percentage from 0 to 100.

In this article
DefinitionPropertiesfilespercentComplete
Not finding the help you need?
Contact Support