| Author |
Using Logic:iterate with an string array
|
Arulanand Dayalan
Ranch Hand
Joined: Aug 10, 2005
Posts: 124
|
|
Hi All, I need to iterate over an string array. I have my setter and getter methods declared in FormBean. In form bean private String[] first; //Corresponding setter and getter methods. In the action i populate the Formbean I need to iterate this string array and show the result. Can any one help how to iterate over an string array. Thanks in advance Regards, Arul.
|
 |
Dom Lassy
Ranch Hand
Joined: May 05, 2006
Posts: 181
|
|
<logic:iterate name="FormBean" property="first" id="currentElement"> <bean:write name="currentElement"/> </logic:iterate>
|
 |
 |
|
|
subject: Using Logic:iterate with an string array
|
|
|