Re: Problems with Indexed Properties, Hidden Values and Logic Iterate Tag

2008-09-22 Thread cacodemon79
ystem.out.println((creazioneProfiloUtenteForm.getHSportBean(0)).getValue()); > but I always obtain null values (for all indexes). > > So, I don't know how to solve my problem. > > I also followed guidelines in: > http://faq.javaranch.com/java/IndexedProperties > http://

Problems with Indexed Properties, Hidden Values and Logic Iterate Tag

2008-09-21 Thread cacodemon79
a lot in advance. -- View this message in context: http://www.nabble.com/Problems-with-Indexed-Properties%2C-Hidden-Values-and-Logic-Iterate-Tag-tp19593011p19593011.html Sent from the Struts - User mailing list archive at Nabble.com.

Re: how to get index using logic iterate tag

2005-03-17 Thread Rick Reumann
scott burns wrote the following on 3/17/2005 5:21 PM: How can I get the index and pass it to a js script function. I tried setting it in my bean but using bean:write is not allowed it seems. Any help would be appreciated. http://struts.apache.org/userGuide/struts-logic.html#iterate You need to

how to get index using logic iterate tag

2005-03-17 Thread scott burns
How can I get the index and pass it to a js script function. I tried setting it in my bean but using bean:write is not allowed it seems. Any help would be appreciated. Scott

RE: Logic Iterate tag

2004-07-19 Thread Kataria, Satish
the performance aspect. Thanks, Satish -Original Message- From: Aditya Athalye [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 11:52 AM To: Kataria, Satish Subject: RE: Logic Iterate tag Hi Satish, I understand that it will avoid Java code to a great extent. But, I want to

RE: Logic Iterate tag

2004-07-19 Thread Kataria, Satish
: Aditya Athalye [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 10:44 AM To: [EMAIL PROTECTED] Subject: Logic Iterate tag Hi All, I am currently using for loops and iterators for traversing arrays and coolections in JSP. I am planning to use this logic : iterate tag in place of this

Logic Iterate tag

2004-07-19 Thread Aditya Athalye
Hi All, I am currently using for loops and iterators for traversing arrays and coolections in JSP. I am planning to use this logic : iterate tag in place of this. I need to know if there is any advantage of using this tag in terms of performance or reduction in Java code in JSP etc