New to Kendo UI for Angular? Start 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');
}
}