Hi,
I am trying to create a table to display some data I pulled out from a database into a JSP page (all part of a Struts2 application), and I don't know what I'm doing wrong here...
This is the part of my JSP page where I create the table:
<table>
<s:iterator value="table" id="row">
<tr>
<s:iterator value="row" id="cell">
<td><s:property /></td>
</s:iterator>
</tr>
</s:iterator>
</table>
I have an ArrayList<ArrayList<String>>
named table in my action class, and I'm pretty sure I have it populated with the correct values. I'm sure this is some easy syntactical error, but I'm still a beginner to Struts2.