RE: Good example for FormComponentPanel?

2008-04-14 Thread Michael Mehrle
, please let me know. Michael -Original Message- From: Vitaly Tsaplin [mailto:[EMAIL PROTECTED] Sent: Friday, April 11, 2008 5:23 PM To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? package org.apache.wicket.extensions.markup.html.tabs; public class

Re: Good example for FormComponentPanel?

2008-04-14 Thread Nick Heudecker
let me know. Michael -Original Message- From: Vitaly Tsaplin [mailto:[EMAIL PROTECTED] Sent: Friday, April 11, 2008 5:23 PM To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? package org.apache.wicket.extensions.markup.html.tabs; public class

Re: Good example for FormComponentPanel?

2008-04-14 Thread Ryan Gravener
DateTimeField extends FormComponentPanel On Fri, Apr 11, 2008 at 7:37 PM, Michael Mehrle [EMAIL PROTECTED] wrote: I need to build a TabbedPanel with three tabs which are part of one form - the selected tab will contain form components which need to be submitted by that one form. It seems

Re: Good example for FormComponentPanel?

2008-04-14 Thread Igor Vaynberg
Heudecker [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 10:29 AM To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? A FormComponentPanel is used to combine several individual form components into a single object, like if you had year/month/day

RE: Good example for FormComponentPanel?

2008-04-14 Thread Michael Mehrle
: Nick Heudecker [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 10:29 AM To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? A FormComponentPanel is used to combine several individual form components into a single object, like if you had year/month/day

Re: Good example for FormComponentPanel?

2008-04-14 Thread Igor Vaynberg
-Original Message- From: Nick Heudecker [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 10:29 AM To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? A FormComponentPanel is used to combine several individual form components into a single

RE: Good example for FormComponentPanel?

2008-04-14 Thread Michael Mehrle
: Monday, April 14, 2008 3:33 PM To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? yes, those links. by default they are regular a href links, so they wont submit the values of components that are inside the tab. you can override tabbedpanel.newlink and return a submitlink

Re: Good example for FormComponentPanel?

2008-04-14 Thread Igor Vaynberg
To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? yes, those links. by default they are regular a href links, so they wont submit the values of components that are inside the tab. you can override tabbedpanel.newlink and return a submitlink instead. -igor

RE: Good example for FormComponentPanel?

2008-04-14 Thread Michael Mehrle
:33 PM To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? yes, those links. by default they are regular a href links, so they wont submit the values of components that are inside the tab. you can override tabbedpanel.newlink and return a submitlink instead

Re: Good example for FormComponentPanel?

2008-04-14 Thread Igor Vaynberg
is actually what I need, so this should work. Michael -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 5:48 PM To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? On Mon, Apr 14, 2008 at 3:52 PM, Michael

Good example for FormComponentPanel?

2008-04-11 Thread Michael Mehrle
I need to build a TabbedPanel with three tabs which are part of one form - the selected tab will contain form components which need to be submitted by that one form. It seems FormComponentPanel is the way to go: are there any good examples of this? Also, would this be the recommended approach?

RE: Good example for FormComponentPanel?

2008-04-11 Thread Michael Mehrle
, April 11, 2008 4:52 PM To: users@wicket.apache.org Subject: Re: Good example for FormComponentPanel? It seems that a simple panel would be the best approach. On Sat, Apr 12, 2008 at 1:37 AM, Michael Mehrle [EMAIL PROTECTED] wrote: I need to build a TabbedPanel with three tabs which are part

Re: Good example for FormComponentPanel?

2008-04-11 Thread Vitaly Tsaplin
Subject: Re: Good example for FormComponentPanel? It seems that a simple panel would be the best approach. On Sat, Apr 12, 2008 at 1:37 AM, Michael Mehrle [EMAIL PROTECTED] wrote: I need to build a TabbedPanel with three tabs which are part of one form - the selected tab will contain