IndexedParamUrlCodingStrategy pageparameter null

2011-04-03 Thread devush
Hi, (Wicket 1.4.8 in the development mode) I am mounting my page like this: mount(new IndexedParamUrlCodingStrategy(/i/about, AboutPage.class)); I am able to call  /i/about without any problems, but when I call /i/about/somevalue I expect to have PageParameters not null. I am calling this in

Re: IndexedParamUrlCodingStrategy pageparameter null

2011-04-03 Thread Martin Grigorov
I guess you forgot to call super(pageParameters) in your page ctor On Sun, Apr 3, 2011 at 7:48 PM, devush devushan...@gmail.com wrote: Hi, (Wicket 1.4.8 in the development mode) I am mounting my page like this: mount(new IndexedParamUrlCodingStrategy(/i/about, AboutPage.class)); I am

Re: IndexedParamUrlCodingStrategy pageparameter null

2011-04-03 Thread devush
Hi, Thanks, yes I have ignored that. It is now working. You have saved my weekend! thanks devush PS: Sorry, by mistake I directly replied to Martin. On 3 April 2011 17:54, Martin Grigorov mgrigo...@apache.org wrote: I guess you forgot to call super(pageParameters) in your page ctor On Sun,