RE: Looking for a good multi-file upload solution

2011-03-08 Thread Martin Gainty
er aucune responsabilité pour le contenu fourni. > Date: Tue, 8 Mar 2011 18:27:21 -0700 > Subject: Looking for a good multi-file upload solution > From: james.t.de...@asu.edu > To: user@struts.apache.org > > Hello all, > > Our team is looking to support multiple conc

Looking for a good multi-file upload solution

2011-03-08 Thread Jim deVos
Hello all, Our team is looking to support multiple concurrent uploads in struts2 (i.e. "ajaxy", gmail-style file uploads, with progress bars, that begin immediately instead of when the user submits the form). We are wondering if there are any tips or best practices for implementing this feature.

Re: multi file upload

2004-08-21 Thread struts lover
My implementation is slightly different. I created an object of FileData with fields like formfile,filename etc. When you first paint the jsp, your action class would create a FileData object and put it into the arraylist defined in your action form. I have a button called ADD ANOTHER FILE. When y

Re: multi file upload

2004-08-21 Thread Stefan Groschupf
I have done the same thing. I would be interested how you had realize the ActionForm getter and setter. You handle the files every time a user press the "load up this file" button? Thank you very much! Stefan - To unsubscribe,

Re: multi file upload

2004-08-21 Thread struts lover
can have a super action class, which cleans up the session before any action takes place. --- Stefan Groschupf <[EMAIL PROTECTED]> wrote: > Hi, > > I'm searching for a solution to have a multi file > upload page. Since it > is not possible to load a set of

multi file upload

2004-08-21 Thread Stefan Groschupf
Hi, I'm searching for a solution to have a multi file upload page. Since it is not possible to load a set of file with one forms, I'm searching for the best workaround. My scenario; I have a html-form and the user can fill out a set of html form fields, e.g. Name, Address etc. I wish