RE: 2D Collection and nested:iterate

2002-11-13 Thread EmailUser
> Thx Aaron. Arron? - Why? My dad was hilarious back in his day. :P > That solution works great for displaying the data. However, > Struts will not know how to populate the List back when the data is > received from the user, since the Indices cannot be set in that access > wrapper object.

RE: 2D Collection and nested:iterate

2002-11-13 Thread Louis Leung
@;keyboardmonkey.com] Sent: Wednesday, November 13, 2002 7:31 AM To: Struts Users Mailing List Subject: RE: 2D Collection and nested:iterate > Thanks for the reply, appreciate it. From what I understand, I have to > do something like : > > firstList --eachElementIs--> simpleB

RE: 2D Collection and nested:iterate

2002-11-13 Thread Arron Bates
> Thanks for the reply, appreciate it. From what I understand, I have to > do something like : > > firstList --eachElementIs--> simpleBean --contains--> secondList > > In other words, wrap the 2nd list inside a bean. However, if that's the > cast, I would imagine it will drag down the perfo

RE: 2D Collection and nested:iterate

2002-11-12 Thread Louis Leung
Arron Bates [mailto:struts-user@;keyboardmonkey.com] Sent: Tuesday, November 12, 2002 4:51 PM To: Struts Users Mailing List Subject: Re: 2D Collection and nested:iterate The problem is the use of "this/" as the property of the second iterate. Basically, it's basically saying "do

Re: 2D Collection and nested:iterate

2002-11-12 Thread Arron Bates
The problem is the use of "this/" as the property of the second iterate. Basically, it's basically saying "don't append anything more to the property reference, my parent's reference will do". ie: you're probably after "myProperty[5][6]" but the "this/" is telling it to leave it at "myProperty[5]"