Re: Struts 2 - Array of Text Fields

2007-07-08 Thread Rene Gielen
With s2, you can do tabular forms quite elegantly. Although the page needs some updates (will try to get on this the next days), the basic principle is shown here: http://cwiki.apache.org/confluence/display/WW/Tabular+inputs You might want to make sure you understand type conversion principles be

Re: Struts 2 - Array of Text Fields

2007-07-08 Thread Rene Gielen
With s2, you can do tabular forms quite elegantly. Although the page needs some updates (will try to get on this the next days), the basic principle is shown here: http://cwiki.apache.org/confluence/display/WW/Tabular+inputs You might want to make sure you understand type conversion principles

Re: Struts 2 - Array of Text Fields

2007-07-06 Thread yitzle
JSP: Create several textfields with the same name: Action: private String[] textFields; public void setText (String s[]) { textFields = s; } public String execute () throws Exception { ... } - To unsubscribe, e-mail: [EMAIL P

Struts 2 - Array of Text Fields

2007-07-05 Thread M Cody
I'm new to struts 2 and I'm trying to setup an edit form that will have an array of text boxes that will transfer their values back to the action for processing. I've tried a couple things, but I'm thinking I'm just approaching it all wrong or missing some key link somewhere and I can't find an