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

Arguments for the pause event. The pause event fires when you pause a file that is currently uploading.

TS
 @Component({
   template: `
   <kendo-upload
     [chunkable]="true"
     (pause)="pauseEventHandler($event)">
   </kendo-upload>
   `
 })
 export class UploadComponent {
   public pauseEventHandler(ev: PauseEvent) {
     console.log('File paused');
   }
 }

Definition

Package:@progress/kendo-angular-upload

Properties

The file that you paused during the upload process.

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