Re: 1.5 equivalent of setRedirect(false); ?

2011-09-02 Thread bht
Martin, Thanks very much, got the idea! Regards, Bernard On Fri, 2 Sep 2011 09:31:39 +0200, you wrote: >Wicket automatically decides whether redirect is needed for the >current request or not depending on the configured >org.apache.wicket.settings.IRequestCycleSettings.RenderStrategy and by >c

Re: 1.5 equivalent of setRedirect(false); ?

2011-09-02 Thread Martin Grigorov
Wicket automatically decides whether redirect is needed for the current request or not depending on the configured org.apache.wicket.settings.IRequestCycleSettings.RenderStrategy and by comparing the current url with the one that the IRequestMapper has generated for the page that is going to be ren

1.5 equivalent of setRedirect(false); ?

2011-09-01 Thread bht
Hi, In 1.4, in a page constructor, we can call setRedirect(false); What is the equivalent of this in Wicket 1.5? The purpose of it is to avoid the creation of a new request. I am aware of the consequences of doing this in 1.4, and I am prepared for them in 1.5, too. Many thanks. Bernard -