Hi everybody!
I have the following question - I have several String[] objects of the
same size. I have to render them on the jsp. First I thought that this
way is correct:
<s:iterator status="stat" value="secondName">
<tr>
<td>
<s:property value="#stat.index" />
</td>
<td>
<s:property/>, <s:property
value="firstName"/>
</td>
<td>
<s:property value="position"/>
</td>
<td>
<s:property value="project"/>
</td>
<td>
<s:property value="room"/>
</td>
</tr>
</s:iterator>
But it's wrong. Are there any opportunities to do it?
Appreciate.
Best regards.

