Re: Problems with iterate

2001-07-04 Thread suhas
That was supposed to be indexed iterator tag . Might not be in the struts - official build Suhas - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 04, 2001 9:37 AM Subject: RE: Problems with iterate Hi There is according to documentation

RE: Problems with iterate

2001-07-04 Thread Torsten Terp
10:37 AM To: [EMAIL PROTECTED] Subject: RE: Problems with iterate Hi There is according to documentation and TLD no attribute 'indexed' for the html:text-tag in Struts 1.0. What version of Struts are you using? Guido |-+| |Guido

RE: Problems with iterate

2001-07-03 Thread Torsten Terp
indexed=true/ /td /tr /logic:iterate ^terp -Original Message- From: Merikan Peter [mailto:[EMAIL PROTECTED]] Sent: Monday, July 02, 2001 9:20 AM To: '[EMAIL PROTECTED]' Subject: RE: Problems with iterate Here is a working example of nested properties in an iterator. All I

RE: Problems with iterate

2001-07-02 Thread Merikan Peter
Here is a working example of nested properties in an iterator. All I need is an indexed getter and setter for address in my testBean.( getAddress(int index) ) % String propertyValue = null;% logic:iterate id=address name=testBean property=addresses indexId=addressIndex tr td valign=top

RE: Problems with iterate

2001-07-02 Thread Torsten Terp
To: [EMAIL PROTECTED] Subject: RE: Problems with iterate You need to do two things. First, you need to generate appropriate names for your input fields. If you use the current Struts tags then all the occurances of your two fields in the example below will generate names of firstName

RE: Problems with iterate

2001-07-02 Thread Torsten Terp
Hi, A giant thank you!!! There is nothing like source when in trouble :-) Will try it at once ^terp -Original Message- From: Merikan Peter [mailto:[EMAIL PROTECTED]] Sent: Monday, July 02, 2001 9:20 AM To: '[EMAIL PROTECTED]' Subject: RE: Problems with iterate Here

RE: Problems with iterate

2001-07-01 Thread Niall Pemberton
You need to do two things. First, you need to generate appropriate names for your input fields. If you use the current Struts tags then all the occurances of your two fields in the example below will generate names of firstName and lastName. What you want is to generate names in the format

Re: Problems with iterate

2001-07-01 Thread suhas
, 2001 11:56 PM Subject: RE: Problems with iterate You need to do two things. First, you need to generate appropriate names for your input fields. If you use the current Struts tags then all the occurances of your two fields in the example below will generate names of firstName and lastName