Re: Display progress bar in same page (request page) using struts2 execAndWait Interceptor

2013-03-05 Thread Eric Reed
Pretty straight forward, google AJAX... basically you use java script to send and receive requests without the need for user interaction. Kind of off topic when it comes to struts and there are many examples out there, use the GOOG. Also this is a lot of work for a progress bar going from one

Re: Display progress bar in same page (request page) using struts2 execAndWait Interceptor

2013-03-05 Thread SudhirSahoo
Sir, Thank you for your reply. It would great if anyone provide example code/url/github/svn etc to achieve this scenario. ~Sudhir -- View this message in context: http://struts.1045723.n5.nabble.com/Display-progress-bar-in-same-page-request-page-using-struts2-execAndWait-Interceptor

Re: Display progress bar in same page (request page) using struts2 execAndWait Interceptor

2013-03-04 Thread Lukasz Lenart
If you want to achieve this you must use Ajax, to stay on the same page and wait for response from backend when validation pass. And during that period you can show the progress bar. Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl

Display progress bar in same page (request page) using struts2 execAndWait Interceptor

2013-03-04 Thread SudhirSahoo
Can anyone please help me. I have registration.jsp with a submit button. When I submit it should validate the credential and show success.jsp. While validating, it is required to dispaly progress bar in the same page (registration.jsp) at the top untill success.jsp renders. When I use the below

Re: Progress Bar

2008-01-17 Thread Dave Newton
--- Martin Gainty <[EMAIL PROTECTED]> wrote: > Rick has that covered Matt. > http://raibledesigns.com/wiki/Wiki.jsp?page=CreateAnAJAXBasedFileuploadProgressbarDialog d. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Re: Progress Bar

2008-01-17 Thread Martin Gainty
Rick has that covered http://raibledesigns.com/wiki/Wiki.jsp?page=CreateAnAJAXBasedFileuploadProgr essbarDialog Martin - Original Message - From: "fea jabi" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Wednesday, January 16, 2008 1:16 PM Subject

RE: Progress Bar

2008-01-16 Thread fea jabi
code snipet would be helpfull. Thanks. > From: [EMAIL PROTECTED]> To: user@struts.apache.org> Subject: Progress Bar> > Date: Fri, 11 Jan 2008 16:14:00 -0500> > > Working a process which would take > couple of mins to complete. Would like to use progress bar for

Re: Progress Bar

2008-01-12 Thread GF
ng a process which would take couple of mins to complete. Would like to > use progress bar for this process. > > How to use a progress bar? using 1.2. struts. > > > Thanks. - To unsubscribe, e-mail: [EMAIL PROTECT

Progress Bar

2008-01-11 Thread fea jabi
Working a process which would take couple of mins to complete. Would like to use progress bar for this process. How to use a progress bar? using 1.2. struts. Thanks. _ Share life as it happens with the new Windows Live. http

RE: s2 File Upload Progress Bar

2007-11-01 Thread Hoying, Ken
I have implemented a file upload progress bar in S2. I used the following as the basis for my work: http://kencochrane.blogspot.com/2006/03/ajax-struts-file-upload-progress -meter.html -Original Message- From: Markus Stauffer [mailto:[EMAIL PROTECTED] Sent: Thursday, November 01

s2 File Upload Progress Bar

2007-11-01 Thread Markus Stauffer
Hello Has anyone tried to implement a file upload progress bar in s2? I have seen this technique on http://www.learntechnology.net/content/ajax/ajax_upload.jsp . Regards -- Markus Stauffer - To unsubscribe, e-mail: [EMAIL

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
Here is a graphical progress bar that doesn't use AJAX or JavaScript. http://www.onjava.com/lpt/a/3886 Wiebe -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: Monday, July 25, 2005 7:26 AM To: 'Struts Users Mailing List' Subject: RE: Technique f

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
Mailing List'" cc Subject RE: Technique for undetermined time of processing - progress bar What If the end user has _javascript_ disabled?  Does DWR handle that cleanly or are you out of luck? -David  _   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Frida

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 u

Technique for undetermined time of processing - progress bar

2005-07-22 Thread David Erickson
Sorry for the vague subject. I've got a situation where I need to do some processing before moving a user to a specific page. The processing could be very fast or very long. I'd like to have some kind of a progress bar type meter than can show how much time is left. I will know fo

RE: Session Idle and Progress Bar

2005-04-07 Thread Wiebe de Jong
If you are doing a file upload, there is no way to know ahead of time how big the file will be. In this case, instead of displaying a progress bar, display the number of bytes received. There won't be any indication of how long the operation will take, but at least you can see it working.

RE: Session Idle and Progress Bar

2005-04-06 Thread Eain Mat
ink this is the simplest solution. Thanks Leo. Eain Wiebe, If you want the page to do refreshes while waiting for the operation to complete, why not implement a progress bar? http://www.onjava.com/pub/a/onjava/2003/06/11/jsp_progressbars.html We are considering to have the progress bar bu