I'm desperately trying to enable the multiple-property to users of my webside. User should be able to upload a bunch of PDF-files to my server without choosing each file separately. I'm using gwt-upload for my uploads. Sadly the
MultiUploader
does not actually lets the user select several files at once, but you have to click the "Browse"-Button for every file again and select in in the browser.
I researched and realised that I need to have something like this
<input name='uploads[]' type="file" multiple>
Setting the "multiple"-property at the input created from gwt-upload does the trick so far that the opening file-dialog lets me select several files, but then the upload does not start / work anymore.
I could not find any example using a multi-file-input with gwt. It would be perfect if there is a way to do this with gwt-upload because I do not really want to implement the whole upload logic by myself again!
Thanks a lot!