New to Kendo UI for Angular? Start 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');
}
}