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

Arguments for the upload event. The upload event fires when you are about to upload one or more files. You can cancel this event to prevent upload and add headers to the request.

TS
 @Component({
   template: `
   <kendo-upload (upload)="uploadEventHandler($event)"></kendo-upload>
   `
 })
 export class UploadComponent {
   public uploadEventHandler(e: UploadEvent) {
     e.headers = e.headers.append('X-Foo', 'Bar');
   }
 }

Definition

Package:@progress/kendo-angular-upload

Methods

If the event is prevented by any of its subscribers, returns true.

Returns:

boolean

true if the default action was prevented. Otherwise, returns false.

Prevents the default action for a specified event. In this way, the source component suppresses the built-in behavior that follows the event.

Properties

data

object

The optional object that you send to the upload handler as key/value pairs.

The files that you will upload to the server.

headers

HttpHeaders

The headers of the request. You can use this to add custom headers to the upload request.