On 12/17/05, Martin Gainty <[EMAIL PROTECTED]> wrote: > > Good Morning Rick > > I liked Niall Pemberton's Nested Lazy validation form solution found here > http://www.niallp.pwp.blueyonder.co.uk/lazyactionform.html
I knew Niall would have some good stuff! Now I just have to mess around with it... could it actually be as simple as... <form-bean name="LazyBean" type="org.apache.commons.beanutils.LazyDynaBean"/> //in my Action I get back for an example... List of Foos where Foos each have a List of Bars and Bars each with a List of Dogs. BeanUtils.copyProperties( LazyBeanInstance, MyListOfFoos ) ? And teh LazyBeanInstance will have in it Foos with Bars and Bars with Dogs? If so.. that would be perfect. I'm going to try it out.