Re: Repeating form on a page

2011-08-05 Thread heikki
OK ! Indeed, this solves it, and now all's perfect. Thank you so much ! Kind regards Heikki Doeleman -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Repeating-form-on-a-page-tp2002098p378.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Repeating form on a page

2011-07-29 Thread Sven Meier
Hi, it really doesn't matter which repeater, but ListView is probably the most easy to use. protected void populateItem(ListItem item) { add(new AForm(...); } Typical error each of us has done wrong when using repeaters for the first time. It has to be: item.add(new

Re: Repeating form on a page

2011-07-29 Thread heikki
hello, despite searching around I haven't found a good working example/explanation of how to create a page where a form is repeated for each element in a collection. (I found some info on using repeaters inside forms, but that is a reverse situation). Earlier in this thread there's the advice to

Re: Repeating form on a page

2010-04-16 Thread Ben Tilford
; > Thanks, > > David > > -Original Message- > From: Xavier López [mailto:xavil...@gmail.com] > Sent: Friday, April 16, 2010 9:33 AM > To: users@wicket.apache.org > Subject: Re: Repeating form on a page > > Hi, > > I've been through a similar issue r

RE: Repeating form on a page

2010-04-16 Thread David Hamilton
have to report back on how well that works :). Thanks, David -Original Message- From: Xavier López [mailto:xavil...@gmail.com] Sent: Friday, April 16, 2010 9:33 AM To: users@wicket.apache.org Subject: Re: Repeating form on a page Hi, I've been through a similar issue recently,

Re: Repeating form on a page

2010-04-16 Thread Igor Vaynberg
this may give you some ideas http://wicketinaction.com/2008/10/building-a-listeditor-form-component/ -igor On Fri, Apr 16, 2010 at 6:48 AM, David Hamilton wrote: > I am new to Wicket (and have had great help from this community so far - > thank you). My question here is that I'm trying to setup

Re: Repeating form on a page

2010-04-16 Thread Xavier López
Hi, I've been through a similar issue recently, also with a 'remove' button to delete elements from the list. I ended up using RefreshingView (that's the one I'd reccomend), and it worked nicely. However I'll expose the various solutions I've gone through, hoping to provide some background on the

Re: Repeating form on a page

2010-04-16 Thread James Carman
The forms are all based on models. So, just make sure you use a different model for each form. I'd look into ListView, perhaps. On Fri, Apr 16, 2010 at 9:48 AM, David Hamilton wrote: > I am new to Wicket (and have had great help from this community so far - > thank you). My question here is tha