Hi, I would like to show a list of user and enable the change of the name. I don't know if there is any mechanism which struts provided to do that.
class User {
private Long id;
private String name;
// getters and setters
}
<form action="updateUser">
<table>
<s:iterator value="users">
<tr>
<td>
<s:textfield name="name"/>
</td>
</tr>
</s:iterator>
</table>
<s:submit/>
</form>
Thanks.
Franz

