RE: Problem in nested tags- Very Urgent - Please Help

2004-02-29 Thread Martin Sturzenegger
- From: Martin Sturzenegger [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 3:28 PM To: Struts Users Mailing List Subject: RE: Problem in nested tags- Very Urgent - Please Help hi, i'm trying to use hubert's (and shirish's) approach on request-scope, and as long as the amount of rows

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread Parthasarathy Kesavaraj
To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help Nice one.. For some reason i thought the Factory would involve more than it does, so i shied away from it. Cheers Mark On 26 Feb 2004, at 15:57, Paul, R. Chip wrote: Note: I think this is likely

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread McCormack, Chris
: 27 February 2004 09:45 To: 'Struts Users Mailing List' Subject: RE: Problem in nested tags- Very Urgent - Please Help Thanks mark , hubert and paul. i removed scope = request and it is working fine now. (Temporary fix :-)) i'll try to use lazy list once i finish off my work) With Regards

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread shirishchandra.sakhare
To: Struts Users Mailing List Subject: RE: Problem in nested tags- Very Urgent - Please Help i'll try to use lazy list once i finish off my work Eugh... We have all done it, but that is how botches get in to production code. People usually get too busy to apply the 'proper' code, or something more

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread Parthasarathy Kesavaraj
Thx chris for pointing to this... With Regards Partha -Original Message- From: McCormack, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 5:51 PM To: Struts Users Mailing List Subject: RE: Problem in nested tags- Very Urgent - Please Help i'll try to use lazy list

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread Martin Sturzenegger
Subject: Re: Problem in nested tags- Very Urgent - Please Help wouldn't mind an example of how to use lazy list if you have one. On 26 Feb 2004, at 15:33, Paul, R. Chip wrote: Or use the Commons Collections LazyList which handles this problem automatically. -Original Message

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread shirishchandra.sakhare
Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help wouldn't mind an example of how to use lazy list if you have one. On 26 Feb 2004, at 15:33, Paul, R. Chip wrote: Or use the Commons Collections LazyList which handles this problem automatically

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Paul, R. Chip
Or use the Commons Collections LazyList which handles this problem automatically. -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:09 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help shirish

Re: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Mark Lowe
, 2004 8:09 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help shirish posted this a few times. if you're scoping to request you'll need a while loop in your getFoo(int index) method public class OrgManagementForm extends ActionForm { private List

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Paul, R. Chip
:49 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help wouldn't mind an example of how to use lazy list if you have one. On 26 Feb 2004, at 15:33, Paul, R. Chip wrote: Or use the Commons Collections LazyList which handles this problem automatically

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Hubert Rabago
} -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:49 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help wouldn't mind an example of how to use lazy list if you have one. On 26 Feb

Re: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Mark Lowe
(), factory); } // Getter/setters for list omitted } -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:49 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help wouldn't mind an example of how

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Parthasarathy Kesavaraj
Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:35 PM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help Nice one.. For some reason i thought the Factory would involve more than it does, so i shied away from

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Paul, R. Chip
To: 'Struts Users Mailing List' Subject: RE: Problem in nested tags- Very Urgent - Please Help Hi Thanks for ur replies. But i could not understand what actually is the problem and how lazy list will solve it. This is the first time i am coming across lazy list. can u explain what actually

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Parthasarathy Kesavaraj
:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:35 PM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help Nice one.. For some reason i thought the Factory would involve more than it does, so i shied away from it. Cheers Mark On 26 Feb 2004, at 15

Re: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Mark Lowe
shirish posted this a few times. if you're scoping to request you'll need a while loop in your getFoo(int index) method public class OrgManagementForm extends ActionForm { private List addressList = new ArrayList(); public Address getAddress(int index) { while(index =