RE: Fundamental forms/models issue

2013-02-18 Thread Hans Lesmeister 2
Hi Michael, Michael Chandler wrote > To conclude, my issues stemmed from not properly linking from page to > page. I did a lot of this: > > BookmarkablePageLink > > ("link", MyClass.class); > > Instead of this: > > Link > > ("link") { > public void onClick() { > setRespo

Re: Fundamental forms/models issue

2013-02-18 Thread Paul Bors
om: Paul Bors [mailto:p...@bors.ws] > Sent: Monday, February 18, 2013 10:08 AM > To: users@wicket.apache.org > Subject: Re: Fundamental forms/models issue > > What are you really trying to accomplish here? > > > > I think you're on the right path only one thing I would mention,

RE: Fundamental forms/models issue

2013-02-18 Thread Michael Chandler
Bors [mailto:p...@bors.ws] Sent: Monday, February 18, 2013 10:08 AM To: users@wicket.apache.org Subject: Re: Fundamental forms/models issue What are you really trying to accomplish here? I think you're on the right path only one thing I would mention, the page constructor is not called

RE: Fundamental forms/models issue

2013-02-18 Thread Michael Chandler
rs.ws] Sent: Monday, February 18, 2013 10:08 AM To: users@wicket.apache.org Subject: Re: Fundamental forms/models issue What are you really trying to accomplish here? I think you're on the right path only one thing I would mention, the page constructor is not called only once per applic

Re: Fundamental forms/models issue

2013-02-18 Thread Paul Bors
What are you really trying to accomplish here? I think you're on the right path only one thing I would mention, the page constructor is not called only once per application life cycle. Same page can be constructed multiple times if you have a link going to that page and you calll setResponsePage

Re: Fundamental forms/models issue

2013-02-18 Thread Sven Meier
Since a Wicket WebPage has it's constructor invoked only one time in the application lifecycle Usually a new page instance is created each time you visit a bookmarkable url. WebPages are never shared between clients. Sven On 02/18/2013 06:47 PM, Michael Chandler wrote: Good morning/afterno

Re: Fundamental forms/models issue

2013-02-18 Thread Carl-Eric Menzel
On Mon, 18 Feb 2013 17:47:16 + Michael Chandler wrote: > Good morning/afternoon everyone. > > I'm having a basic problem fully deciphering how to best manage my > forms, specifically related to Models that are attached to forms. > Since a Wicket WebPage has it's constructor invoked only one