Problem in population of VO

2004-02-24 Thread Parthasarathy Kesavaraj
Hi I didn't get any reply.. so sorry... I am resending my previous mail With Regards Partha -Original Message- From: Parthasarathy Kesavaraj Sent: Tuesday, February 24, 2004 10:36 AM To: 'Struts Users Mailing List' Subject: RE: Problem in population of VO Hi Sorry

Re: Problem in population of VO

2004-02-24 Thread Niall Pemberton
PROTECTED] Sent: Tuesday, February 24, 2004 5:41 PM Subject: Problem in population of VO Hi I didn't get any reply.. so sorry... I am resending my previous mail With Regards Partha -Original Message- From: Parthasarathy Kesavaraj Sent: Tuesday, February 24, 2004 10:36 AM

RE: Problem in population of VO

2004-02-23 Thread Parthasarathy Kesavaraj
?? With Regards Partha -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Saturday, February 21, 2004 5:47 PM To: Struts Users Mailing List Subject: Re: Problem in population of VO I am not sure how to read this. It seems to say that, when you submit a form, the values

Problem in population of VO

2004-02-21 Thread Parthasarathy Kesavaraj
Hi I am having a form bean that contains a VO(Say X) This VO again contains an arraylist of VOs of type Y While displaying I am getting VO - X and from that I am getting collection of Y, iterating it and displaying it in Text fields. But when I again submit the form the collection of Y vos is

Re: Problem in population of VO

2004-02-21 Thread Michael McGrady
I am not sure how to read this. It seems to say that, when you submit a form, the values of the form are uploaded, but, if you resubmit the form, the values are not uploaded. This says to me that what happened BEFORE you submit the form is important, only because that is the ONLY DIFFERENCE

Re: Problem in population of VO

2004-02-21 Thread Hubert Rabago
Not entirely certain but it sounds like you need to use ListUtils.lazyList() for you type Y collection, and you'll need to override your form's reset() method to do this as well. - Hubert --- Parthasarathy Kesavaraj [EMAIL PROTECTED] wrote: Hi I am having a form bean that contains a