Re: PageParameters & mounted pages

2015-11-18 Thread Martin Grigorov
Hi Sebastien, The problem is that Request#getQueryParameters() is about - parameters in the query string. And "/mypage/${param}" uses parameter in the path. Both of these are GET parameters but they are different. To get the correct values you should use something like: IRequestHandler handler

Re: PageParameters & mounted pages

2015-11-18 Thread Sebastien
Hi Martin, Thank you very much for this explanation and suggestion! As you said, both are GET parameters (and actually, both are accessible thought page-parameters), so from a user point of view it is strange that one is not considered as a "request parameter". Consider a user, who used to get

PageParameters & mounted pages

2015-11-18 Thread Sebastien
Hi, I have a little concerns about PageParameters and mounted pages. On a first case - mypage?param=myvalue - I can retrieve param from both page-parameters and from Request#getQueryParameters() On a second case - mypage/myvalue (with a mounted page /mypage/${param}) - I am able to retrieve