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

PauseEvent

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

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

file

FileInfo

The file that you paused during the upload process.

Not finding the help you need?
Contact Support