Re: wizard style example, anywhere?

2001-05-01 Thread struts
one of the first things the ActionServlet does after identifying/creating a FormBean instance is calling FormBean.reset() on it. you'll need to add a similar switch() or conditional in your reset() method so all your fields aren't initialized. not sure about 2. i think they were just checking

RE: wizard style example, anywhere?

2001-05-01 Thread Jason Chaffee
PROTECTED]Subject: Re: wizard style example, anywhere? I followed the wizard example source code (see below) but I have a problem in that my Form data gets recycled between pages of the wizard. In another words, if I click next on page 1, then click prev on page 2, my form data

Re: wizard style example, anywhere?

2001-04-26 Thread Udo Walker
Hi, there's a hack for image submit buttons. E.g. if you have a html:image property=openOrders page=.../ you'll get a request parameter with the value of the property attribute combined with a '.x' and '.y' for the position in the image submit button. If you only want to test which of the many

RE: wizard style example, anywhere?

2001-04-26 Thread Nanduri, Amarnath
something } -Original Message- From: Uwe Pleyer [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 4:31 AM To: [EMAIL PROTECTED] Subject: Re: wizard style example, anywhere? Much thanks for this clearfying hack. In my opinion we should look for a way to identify the pressed

RE: wizard style example, anywhere?

2001-04-25 Thread iwanek
Hi, I wrote: Specifically, an application that uses "wizard" style, multiple-page input forms would be very nice. Couple of Struts documents I looked mention that Struts works well with wizard style application, but I get confused when it comes to writing struts-config.xml, JSPs that share

RE: wizard style example, anywhere?

2001-04-25 Thread Marouane Louah
hi kazumi Sorry i dont understood what you want to say I'm looking for an real example for you -Message d'origine- De?: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Envoye?: mercredi 25 avril 2001 10:27 A?: [EMAIL PROTECTED] Objet?: RE: wizard style example, anywhere? Hi, I wrote

Re: wizard style example, anywhere?

2001-04-25 Thread Tharwat Abdul-Malik
I use something like the following in my struts-config.xml file: actionpath="/signup" type="SignupAction" name="signupForm" scope="session" input="page1.jsp" forward name="page1" path="page1jsp"/

RE: wizard style example, anywhere?

2001-04-24 Thread Marouane Louah
you can try the example provided with the installation -Message d'origine- De?: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Envoye?: mardi 24 avril 2001 15:51 A?: [EMAIL PROTECTED] Objet?: wizard style example, anywhere? Hello struts-users, I am very new to Struts (or JSP for that