Re: [Wicket-user] stateless and/ or bookmarkable pages in Wicket 1.3

2007-04-24 Thread ZedroS Schwart
Thanks for your answers. I've read that one can override the method getStatelessHint() as following : protected boolean getStatelessHint() { return true; } to have a stateless form/component. However, in the SignInForm

[Wicket-user] stateless and/ or bookmarkable pages in Wicket 1.3

2007-04-20 Thread ZedroS Schwart
Hi all I would like to fork the discussion Issue with redirection to intro page after logout to discuss stateless and/ or bookmarkable pages in Wicket 1.3. Indeed, Eelco said : Off topic, I think it's good practice to make your login page a stateless page (using a stateless form), so that users

Re: [Wicket-user] stateless and/ or bookmarkable pages in Wicket 1.3

2007-04-20 Thread Igor Vaynberg
the shorter version is: all bookmarkable pages start out stateless. when you add a non Stateless* component to them, it makes them stateful. -igor On 4/20/07, Johan Compagner [EMAIL PROTECTED] wrote: if you want stateless page then all the components on that page must be stateless So if you