Hi, Is it possible to dynamically add inputs (Texfields) to a form in Wicket?
I am trying to make a form where a user can add an unlimited number of inputs to the form. For example, <input type="text" value=".."/> How can I loop through the inputs that have been dynamically added to the form once it is submitted? <form> <input type="text" name="foo1" value=".."/> <input type="text" name="foo2" value=".."/> .... <input type="text" name="fooN" value=".."/> </form> Thanks! Will
