RE: architecture of composite action forms

2005-08-07 Thread Rivka Shisman
Hi Adam Do you have an example of using 'nested beans'. How does the ActionForm look like - specifically the validate() method? Thanks Rivka >Rivka Shisman on 30/06/05 13:30, wrote: >>I have a transfer object called FatherTO that contains a collection of >>ChildTO's. >> > >Sounds like you shou

RE: architecture of composite action forms - please help

2005-07-05 Thread Rivka Shisman
nks Rivka -Original Message- From: Michael Jouravlev [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 05, 2005 7:42 PM To: Struts Users Mailing List Subject: Re: architecture of composite action forms - please help You want to have your TOs populated by Struts? Why would not you just make Fath

Re: architecture of composite action forms - please help

2005-07-05 Thread Michael Jouravlev
On 7/5/05, Rick Reumann <[EMAIL PROTECTED]> wrote: > Michael Jouravlev wrote the following on 7/5/2005 1:41 PM: > > You want to have your TOs populated by Struts? Why would not you just > > make FatherTO as a member of ActionForm, and use it as nested > > property? If you want to retain TO values b

Re: architecture of composite action forms - please help

2005-07-05 Thread Rick Reumann
Michael Jouravlev wrote the following on 7/5/2005 1:41 PM: You want to have your TOs populated by Struts? Why would not you just make FatherTO as a member of ActionForm, and use it as nested property? If you want to retain TO values between requests, set form scope to "session". Yup. This is wh

Re: architecture of composite action forms - please help

2005-07-05 Thread Michael Jouravlev
You want to have your TOs populated by Struts? Why would not you just make FatherTO as a member of ActionForm, and use it as nested property? If you want to retain TO values between requests, set form scope to "session". Michael. > Rivka Shisman wrote: > > Hello Friends, > > > > > > > > I have a

Re: architecture of composite action forms - please help

2005-07-05 Thread Grzegorz Stasica
Rivka Shisman wrote: Hello Friends, I have a transfer object called FatherTO that contains a collection of ChildTO's. Can you please help me with how the relevant ActionForm (i.e. FatherForm ) should look like. How should the reset() & validate() methods look like? Should I use the same j

Re: architecture of composite action forms

2005-06-30 Thread Martin Gainty
http)www.laconiadatasystems.com From: Adam Hardy <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: architecture of composite action forms Date: Thu, 30 Jun 2005 15:06:52 +0100 MIME-Version: 1.0 Received: from mail.apache.org ([

Re: architecture of composite action forms

2005-06-30 Thread Adam Hardy
Rivka Shisman on 30/06/05 13:30, wrote: I have a transfer object called FatherTO that contains a collection of ChildTO's. Sounds like you should look at 'nested beans'. Check them out on the jakarta struts website. It depends on your user interface design. You may find it easier to have a