Re: [Wicket-user] Newbie question: applying dynamic form component with ListView

2006-03-15 Thread Eelco Hillenius
blic Integer getAge() { >return age; > } > > public void setAge(Integer age) { >this.age = age; > } > > public String getName() { >return name; > } > > public void setName(String name) { > this.name = name; > } > > @Overri

Re: [Wicket-user] Newbie question: applying dynamic form component with ListView

2006-03-15 Thread Michael K
} Good luck, I hope this helps you understand.  Just remember th at it really is as easy as it should be, which (sadly) takes some getting used to if you've used other frameworks.----- Original Message ----- From: Michael K To: Wicket User ListSent: Wednesday, March 15, 2006

Re: [Wicket-user] Newbie question: applying dynamic form component with ListView

2006-03-15 Thread Jonathan Cone
ncent Jenks To: wicket-user@lists.sourceforge.net Sent: Wednesday, March 15, 2006 11:49 AM Subject: Re: [Wicket-user] Newbie question: applying dynamic form component with ListView So, in a nutshell, my code could be refactored to eliminate the need for Label objects in each row and in their place

Re: [Wicket-user] Newbie question: applying dynamic form component with ListView

2006-03-15 Thread Vincent Jenks
h (sadly) takes some getting used to if you've used other frameworks. - Original Message ----- From: Michael K To: Wicket User List Sent: Wednesday, March 15, 2006 4:22 AM Subject: [Wicket-user] Newbie question: applying dynamic form component with ListView

Re: [Wicket-user] Newbie question: applying dynamic form component with ListView

2006-03-15 Thread Jonathan Cone
I hope this helps you understand.  Just remember that it really is as easy as it should be, which (sadly) takes some getting used to if you've used other frameworks. - Original Message ----- From: Michael K To: Wicket User List Sent: Wednesday, March 15, 2006 4:22 AM Su

[Wicket-user] Newbie question: applying dynamic form component with ListView

2006-03-15 Thread Michael K
Hi,Which type should I define in POJO Model to hold the value of the array of TextField/DropDownChoice when populated by ListView? Should I define it as String[] or ArrayList or something else? I have attached the following example to explain my situation:    public class DetailForm extends Form {