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

CancelEvent

Arguments for the cancel event. The cancel event fires when the user cancels the process of uploading a file or a batch of files.

ts
 @Component({
   selector: 'my-upload',
   template: `
   <p>Click the <span class='k-icon k-font-icon k-i-cancel'></span> icon during upload to trigger the event</p>
   <kendo-upload
     [saveUrl]="uploadSaveUrl"
     [removeUrl]="uploadRemoveUrl"
     (cancel)="cancelEventHandler($event)">
   </kendo-upload>
   `
 })
 export class UploadComponent {
   uploadSaveUrl = 'saveUrl'; // should represent an actual API endpoint
   uploadRemoveUrl = 'removeUrl'; // should represent an actual API endpoint

   cancelEventHandler(e: CancelEvent) {
     console.log('Canceling file upload', e.files);
   }
 }
NameTypeDefaultDescription

files

FileInfo[]

The list of the files that were going to be uploaded.

Not finding the help you need?
Contact Support