Hello im using ejs-uploader and I faced with problem when i upload multiple files to server i need handle response ("in response i receive id of file) for this reason i used event (success) but problem that in this event i can see response only for first file. another files not present in event. Maybe there is another way to handle responses from server or i did something wrong? Thank you in advance.
HTML:
<div #dropEle class="drop-area">
<ejs-uploader #defaultupload [htmlAttributes]="{name:'file'}" (failure)="handleResponse($event)" (success)="handleResponse($event)" (uploading)="setRequestOptions($event)" [multiple]="true" [asyncSettings]='savePath' [autoUpload]='false'
[dropArea]='dropEle'></ejs-uploader>
</div>
TS:
handleResponse(event){
console.log(event);
}event: