Detect end of multi-file upload

Hi all,

I’d like to be able to work with a group of files all at once. Ideally, processingFxn() would fire as soon as a batch of files was finished being added/uploaded. However, I’m not sure how to implement this. I figured that I would need to use the ‘onUploadComplete’ event, but for some reason that refused to fire. I know that the uploader is working though because the ‘onAfterFileAdd’ event executes without a problem. I feel like this should be really simple, but I just can’t seem to make it happen. Any help would be appreciated. Thanks!

Hi,

onUploadComplete fires when all files of a batch are uploaded successfully. And a file is considered as “uploaded” if the server response contains status: "server"property.

Best