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

Arguments for the cancel event. The cancel event fires when you cancel the upload of a file or batch of files.

TS
@Component({
   template: `
   <kendo-upload (cancel)="cancelEventHandler($event)"></kendo-upload>
   `
 })
 export class UploadComponent {
   public cancelEventHandler(e: CancelEvent) {
     console.log('Canceling file upload', e.files);
   }
}

Definition

Package:@progress/kendo-angular-upload

Properties

The files that you canceled during the upload process.

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