Re: [Wicket-user] progress info during uploads ?

2005-08-15 Thread Michael Glauche
Johan Compagner wrote: that is the one thing we still are doing first before anything else on Form: public final void onFormSubmitted() { if (handleMultiPart()) { // First, see if the processing was triggered by a Wicket button final Button submittingButto

Re: [Wicket-user] progress info during uploads ?

2005-08-15 Thread Johan Compagner
that is the one thing we still are doing first before anything else on Form: public final void onFormSubmitted() { if (handleMultiPart()) { // First, see if the processing was triggered by a Wicket button final Button submittingButton = findSubmittingButton(

Re: [Wicket-user] progress info during uploads ?

2005-08-15 Thread Michael Glauche
Juergen Donnerstag wrote: I've no clue, yet. If I were you I would download the software (sourceforge) and see how it works. It is implemented in PHP, java/servlet and will be in perl. Shouldn't be too difficult to figure it out. We are using the apache commons fileUpload jar. May be they are usi

Re: [Wicket-user] progress info during uploads ?

2005-08-15 Thread Juergen Donnerstag
I've no clue, yet. If I were you I would download the software (sourceforge) and see how it works. It is implemented in PHP, java/servlet and will be in perl. Shouldn't be too difficult to figure it out. We are using the apache commons fileUpload jar. May be they are using it as well or more likely

Re: [Wicket-user] progress info during uploads ?

2005-08-15 Thread Michael Glauche
Juergen Donnerstag wrote: and it works. I just tested it. What I'm missing though is a cancel button. How would you do that in a browser... Because the browser is also on the other hand still posting the data. Maybe with ajax this would be nicely possible... Haven't tried this myself but http

Re: [Wicket-user] progress info during uploads ?

2005-08-15 Thread Juergen Donnerstag
and it works. I just tested it. What I'm missing though is a cancel button. Juergen On 8/15/05, Graeme J Sweeney <[EMAIL PROTECTED]> wrote: > On Mon, 15 Aug 2005, Johan Compagner wrote: > > > How would you do that in a browser... > > Because the browser is also on the other hand still posting th

Re: [Wicket-user] progress info during uploads ?

2005-08-15 Thread Graeme J Sweeney
On Mon, 15 Aug 2005, Johan Compagner wrote: How would you do that in a browser... Because the browser is also on the other hand still posting the data. Maybe with ajax this would be nicely possible... Haven't tried this myself but http://www.raditha.com/megaupload/ is supposed to be an examp

Re: [Wicket-user] progress info during uploads ?

2005-08-15 Thread Johan Compagner
How would you do that in a browser... Because the browser is also on the other hand still posting the data. Maybe with ajax this would be nicely possible... johan Michael Glauche wrote: Hi, is it possible to get some sort of feedback information during a (possible very big) file-upload ? I

[Wicket-user] progress info during uploads ?

2005-08-15 Thread Michael Glauche
Hi, is it possible to get some sort of feedback information during a (possible very big) file-upload ? I'm experimenting with the wicket.markup.html.form.Form, but all the the callbacks get called after the transfer is finnished. The ideal solution would have a second thread with some AJAX