I'm using kendo-upload component for uploading attachment functionality, while there's no problem in file uploading, it doesn't trigger the error event for failed upload operation (server returns a 413 error code for file size exceeding certain file size limit). All the other events are firing .
<kendo-upload
[saveUrl]="uploadUrl"
[restrictions]="restrictions"
[withCredentials]="false"
[autoUpload]="false"
(upload)="onUpload($event)"
(error)="errorEventHandler($event)"
(select)="onSelect($event)"
(success)="onComplete($event)">
</kendo-upload>