Re: Multiple field with same name

2010-08-14 Thread Franz Wong
I have solved the problem. The thread I referenced is correct. Franz On Fri, Aug 13, 2010 at 6:00 PM, Franz Wong wrote: > I found the "Type conversion" page from struts official web site and I > followed the "Advanced example for indexed Lists and Maps", but I cannot get > it work. > > Then I f

Re: Multiple field with same name

2010-08-13 Thread Franz Wong
I found the "Type conversion" page from struts official web site and I followed the "Advanced example for indexed Lists and Maps", but I cannot get it work. Then I followed this thread [1]. However, my list only contains 1 null object. Franz [1] http://old.nabble.com/-S2--Beans-list-in-Dynamic-f

Multiple field with same name

2010-08-12 Thread Franz Wong
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 }