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

ErrorEvent

Arguments for the error event. The error event fires when an upload or remove operation fails.

ts
 @Component({
   selector: 'my-upload',
   template: `
   <kendo-upload
     [saveUrl]="uploadSaveUrl"
     [removeUrl]="uploadRemoveUrl"
     (error)="errorEventHandler($event)">
   </kendo-upload>
   `
 })
 export class UploadComponent {
   uploadSaveUrl = 'saveUrl'; // should represent an actual API endpoint
   uploadRemoveUrl = 'removeUrl'; // should represent an actual API endpoint

   errorEventHandler(e: ErrorEvent) {
     console.log('An error occurred');
   }
 }
NameTypeDefaultDescription

files

FileInfo[]

The list of the files that failed to be uploaded or removed.

operation

OperationType

The operation type (upload or remove).

response

HttpResponse<any>

The response object returned by the server.

Not finding the help you need?
Contact Support