Re: Multiple file upload best practice?

2017-03-28 Thread Matthew McLarty
Thanks, Thomas. I am going to ditch the third-party library in favor of the GWT FileUpload and set its "multiple" attribute so user's can upload multiple files. Seems like it will be much cleaner this way anyway. On Tuesday, March 28, 2017 at 1:31:44 PM UTC-4, Thomas Broyer wrote: > > I

Re: Multiple file upload best practice?

2017-03-28 Thread Thomas Broyer
I think a best practice nowadays would be to use an (which you can hide and "trigger" with .click() when clicking on, say, a button; this is only "cosmetic" though) and XMLHttpRequest advanced features (sending a File object, or possibly a FormData if that's what your server expects; using

Multiple file upload best practice?

2017-03-28 Thread Matthew McLarty
Hello, I currently have a project that's using the gwtupload component. I'm fairly happy with it except that it does not provide a way to remove a file once it has been uploaded when using its MultiUploader