Re: Right way to handle compilcated form

2005-12-31 Thread Rick R
Konrad Billewicz wrote: Hello, I have a complicated form with mulit-level menu (several 's with onchange='submit()' ). I'm not sure how I should organize my Actions. Konrad, I don't have a lesson behind this app yet, but you might want to get this zip I have and look at the struts-crud examp

Re: Right way to handle compilcated form

2005-12-31 Thread Laurie Harper
Konrad Billewicz wrote: Sounds like you have some broken flow control there... I would expect that PrepareEditXYZAction would forward to a JSP, and that the JSP would have a form that submits to EditXYZAction. EditXYZAction would have 'intput' set to point to PrepareEditXYZAction which would me

Re: Right way to handle compilcated form

2005-12-27 Thread Konrad Billewicz
> Sounds like you have some broken flow control there... I would expect that > PrepareEditXYZAction would forward to a JSP, and that the JSP would have a > form that submits to EditXYZAction. EditXYZAction would have 'intput' set > to point to PrepareEditXYZAction which would mean that on valida

Re: Right way to handle compilcated form

2005-12-27 Thread Laurie Harper
Konrad Billewicz wrote: Hello, I have a complicated form with mulit-level menu (several 's with onchange='submit()' ). I'm not sure how I should organize my Actions. Currently I have PrepareEditXYZAction which handles the JSP page. Form in the JSP page routes back to PrepareEditXYZAction. In