Re: RE: struts logic-iterate and accessing nested index properties

2004-05-13 Thread Satish Satish
P > > -Original Message- > From: PADALA, SANDHYA (SBCSI) [mailto:[EMAIL PROTECTED] > Sent: Friday, May 14, 2004 5:28 AM > To: Struts Users Mailing List > Subject: RE: struts logic-iterate and accessing nested index properties > > Thank you Tim. I used JSTL , tha

RE: struts logic-iterate and accessing nested index properties

2004-05-13 Thread Prasad, Kamakshya
Hi, It can as well be done in struts using this   [] KP -Original Message- From: PADALA, SANDHYA (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 5:28 AM To: Struts Users Mailing List Subject: RE: struts logic-iterate and accessing nested index properties Thank you

RE: struts logic-iterate and accessing nested index properties

2004-05-13 Thread PADALA, SANDHYA (SBCSI)
Thank you Tim. I used JSTL , that solved my problem -Original Message- From: Slattery, Tim - BLS [mailto:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 1:58 PM To: 'Struts Users Mailing List' Subject: RE: struts logic-iterate and accessing nested index properties > In

RE: struts logic-iterate and accessing nested index properties

2004-05-13 Thread Slattery, Tim - BLS
> In my JSP I have coded the following > indexId="index"> property='<%= "fooBean[" + index + "].attID" > %>'/> [] > > When I run the JSP I get the following error > Error 500: No getter method for property fooBean[0].attID of > bean element Use JSTL: -- Tim Slattery [EMAIL PROTECTE

struts logic-iterate and accessing nested index properties

2004-05-13 Thread PADALA, SANDHYA (SBCSI)
Hi I have a form bean which extexnds Action form . FooForm This FooForm has an array of another java bean say FooJavaBean Public class FooForm extends ActionForm { Public FooJavaBean[] fooBean = ; Public FooJavaBean getFooBean(int index) { return fooBean[index]; } Public FooJavaBean

struts logic-iterate and accessing nested index properties

2004-05-13 Thread PADALA, SANDHYA (SBCSI)
Hi I have a form bean which extexnds Action form . FooForm This FooForm has an array of another java bean say FooJavaBean Public class FooForm extends ActionForm { Public FooJavaBean[] fooBean = ; Public FooJavaBean getFooBean(int index) { return fooBean[index]; } Public FooJavaBean