| Author |
Need to Iterate over a list of Objects
|
Vamshi Jampala
Ranch Hand
Joined: Feb 23, 2008
Posts: 40
|
|
Hi All,
My first post
Does any one of you know how to iterate over a list of objects in JSP (Struts).
I have a Form: mfrForm
"mfrForm" has a list: industryList
"industryList" is a list of objects "industries"
industries class has
String indName,...
I want to iterate and be able to print all the indName in JSP
So please help me!!!
Thank you soo much in Advance
|
 |
Robin John
Ranch Hand
Joined: Sep 10, 2008
Posts: 270
|
|
Hi Vamsi,
This should be really helpful --> Struts Tag Library
and you should be looking at logic:iterate tag.
This example might help
<logic:iterate id="yourId" name="yourList">
<td><bean:write name="yourId" property="indName" /></td>
</logic:iterate>
let me know...
...happy developing
|
 |
 |
|
|
subject: Need to Iterate over a list of Objects
|
|
|