RE: best way to build a wizard

2003-07-11 Thread Mathew, Manoj
bject: Re: best way to build a wizard Personally I don't think there is anything wrong with having multiple mappings. You are doing the right thing by mapping to the same action and form. The jsp can define the action individually. After reading Ted's book I think of mappings and act

Re: best way to build a wizard

2003-07-11 Thread Sandeep Takhar
Personally I don't think there is anything wrong with having multiple mappings. You are doing the right thing by mapping to the same action and form. The jsp can define the action individually. After reading Ted's book I think of mappings and actions as just presentation layer components that

RE: best way to build a wizard

2003-07-10 Thread Rodney Paul
or next pages. Cheers Rodney -Original Message- From: Michael Muller [mailto:[EMAIL PROTECTED] Sent: Friday, 11 July 2003 9:41 AM To: Struts Users Mailing List Subject: Re: best way to build a wizard I'm not sure that really solves my problem. What do I put as the "input&q

Re: best way to build a wizard

2003-07-10 Thread Michael Muller
AM To: Struts Users Mailing List Subject: Re: best way to build a wizard It turns out that I can't pass the action into the html:form tag using tiles; that would involve nesting JSP tags. Grr. I guess my only recourse is to have the open html:form tag in the inserted body and the close html:

RE: best way to build a wizard

2003-07-10 Thread Rodney Paul
-Original Message- From: Michael Muller [mailto:[EMAIL PROTECTED] Sent: Friday, 11 July 2003 8:41 AM To: Struts Users Mailing List Subject: Re: best way to build a wizard It turns out that I can't pass the action into the html:form tag using tiles; that would involve nesting JSP tags. Gr

Re: best way to build a wizard

2003-07-10 Thread Michael Muller
It turns out that I can't pass the action into the html:form tag using tiles; that would involve nesting JSP tags. Grr. I guess my only recourse is to have the open html:form tag in the inserted body and the close html:form tag in the template. Ick. So now I'm trying to figure out a way to ha

best way to build a wizard

2003-07-10 Thread Michael Muller
My app has a bunch of wizard-style forms. I have one "NextPageAction" Action class, and an separate mapping for each page. The mappings all bind to the same form bean (a DynaValidatorForm) and invoke the "NextPageAction". I was hoping to have only one action mapping, with a whole bunch of fo