Form composed of Panel components

2011-04-11 Thread Chris Colman
I have a complex form that I choose to break down into logical sub Panel components and then add them as children to the Form. The sub Panels themselves then have FormComponents like text fields and DropDownChoice components added to them. Will the normal validate/update mechanism simply work

RE: Form composed of Panel components

2011-04-11 Thread Wilhelmsen Tor Iver
Look into org.apache.wicket.markup.html.form.FormComponentPanelT - Tor Iver -Original Message- From: Chris Colman [mailto:chr...@stepaheadsoftware.com] Sent: 11. april 2011 15:08 To: users@wicket.apache.org Subject: Form composed of Panel components I have a complex form that I choose

Re: Form composed of Panel components

2011-04-11 Thread Pedro Santos
Simply nestle sub Panel contain form components is fine if you make sure that there are a form component higher in hierarchy. FormComponentPanel is useful if you want the panel itself participating in form processing, I don't think this is the case. On Mon, Apr 11, 2011 at 10:08 AM, Chris Colman

RE: Form composed of Panel components

2011-04-11 Thread Chris Colman
Subject: RE: Form composed of Panel components Look into org.apache.wicket.markup.html.form.FormComponentPanelT - Tor Iver -Original Message- From: Chris Colman [mailto:chr...@stepaheadsoftware.com] Sent: 11. april 2011 15:08 To: users@wicket.apache.org Subject: Form composed of Panel

Re: Form composed of Panel components

2011-04-11 Thread Pedro Santos
processing mechanism unless they implement these interfaces? -Original Message- From: Wilhelmsen Tor Iver [mailto:toriv...@arrive.no] Sent: Monday, 11 April 2011 11:11 PM To: users@wicket.apache.org Subject: RE: Form composed of Panel components Look

Re: Form composed of Panel components

2011-04-11 Thread Michael O'Cleirigh
Extending FormComponentPanel is useful if you want your panel to return some IModelBusinessObject that is built from the various controls on the page. You can override convertInput and onBeforeRender to build/show the BusinessObject into the panel fields. It can make things a lot simpler

RE: Form composed of Panel components

2011-04-11 Thread Chris Colman
: Re: Form composed of Panel components Form will process nested form components regardless of the web markup container component you used to group them. On Mon, Apr 11, 2011 at 10:46 AM, Chris Colman chr...@stepaheadsoftware.com wrote: I can't derive my Panels from FormComponentPanel because

Re: Form composed of Panel components

2011-04-11 Thread Pedro Santos
derive from Panel? -Original Message- From: Pedro Santos [mailto:pedros...@gmail.com] Sent: Monday, 11 April 2011 11:54 PM To: users@wicket.apache.org Subject: Re: Form composed of Panel components Form will process nested form components regardless of the web markup container