Dear Support
Attached you find a simple project.
There is a list of uploaded files. You can add more files by adding them with the MultiUpload Button which is working fine for one run to upload one or multiple files.

If you use the same MultiUpload Button again, the list of files is not deleted despite the fact of using
event.getSource().clearFileList();
upload.clearFileList();
The newly uploaded files are added to the list of the files already deleted in the run before. This list gets larger each upload and I would have to check each entry, if the file still is existing or might be new ;/
With the second upload button where I create each time of the upload a new MultiUploader it is working.

Hint
I found in the Jmix-UI a property uploadHandlerType, but the Studio complains you if you try to set this handler.

I think, there is a bug here
UPDATE
I did change MultiFileTemporaryStorageBuffer to MultiFileMemoryBuffer ( deprecated … ) and was then able in
public void onUploadAllFinished(final AllFinishedEvent event) {
to assign a new Buffer
MultiFileMemoryBuffer newBuffer = new MultiFileMemoryBuffer();
upload.setReceiver(newBuffer);
so, the program is finally working, otherwise there is the same bug with this implementation too.
Regards
Felix
