RE: Technique for undetermined time of processing - progress bar

2005-07-25 Thread Wiebe de Jong
Yes, that is what I did when I implemented it. Wiebe -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: Monday, July 25, 2005 9:52 AM To: 'Struts Users Mailing List' Subject: RE: Technique for undetermined time of processing - progress bar Thanks for the

RE: Technique for undetermined time of processing - progress bar

2005-07-25 Thread David Erickson
#x27;Struts Users Mailing List' > Subject: RE: Technique for undetermined time of processing - progress bar > > Here is a graphical progress bar that doesn't use AJAX or JavaScript. > > http://www.onjava.com/lpt/a/3886 > > Wiebe > > -Original Message- &

RE: Technique for undetermined time of processing - progress bar

2005-07-25 Thread Wiebe de Jong
lto:[EMAIL PROTECTED] Sent: Monday, July 25, 2005 6:14 AM To: Struts Users Mailing List Cc: 'Struts Users Mailing List' Subject: RE: Technique for undetermined time of processing - progress bar Unfortunately, any AJAX implementation will require JavaScript. You can replace this with a st

RE: Technique for undetermined time of processing - progress bar

2005-07-25 Thread David Erickson
005 6:14 AM To: Struts Users Mailing List Cc: 'Struts Users Mailing List' Subject: RE: Technique for undetermined time of processing - progress bar Unfortunately, any AJAX implementation will require JavaScript. You can replace this with a standard JSP implementation, but you wil

RE: Technique for undetermined time of processing - progress bar

2005-07-25 Thread BHansard
y, July 22, 2005 1:55 PM To: Struts Users Mailing List Cc: 'Struts Users Mailing List' Subject: Re: Technique for undetermined time of processing - progress bar I use AJAX to kick off the process. For this case You can send an AJAX request to get the time, once recieved display a div

RE: Technique for undetermined time of processing - progress bar

2005-07-23 Thread David Erickson
Technique for undetermined time of processing - progress bar I use AJAX to kick off the process. For this case You can send an AJAX request to get the time, once recieved display a div that will contain the "progress bar" and submit a second request to run the actual process. On

Re: Technique for undetermined time of processing - progress bar

2005-07-22 Thread BHansard
I use AJAX to kick off the process. For this case You can send an AJAX request to get the time, once recieved display a div that will contain the "progress bar" and submit a second request to run the actual process. On completion, you can forward the page to the next url. If you use DWR and can