Here i am iterating over a searched user list which is working properly.
I am trying to display three user in each row
like
u1 u2 u3
u4 u5 u6
..
..
This code showing one username in each row. i have to show as above
<s:iterator var="searchedUser" value="searchedUserList">
<tr><td>
<s:property value="UserName"/>
</td></tr>
</s:iterator>
here is the code: