Hi,
I need to get all parameters from the URL which is used to call a view.
The view class is set to @AnonymousAllowed
URL: http://localhost:8080/tourLists?name=paramvalue
It works fine, I can access the view without login and see the wanted content.
In onBeforeShow I want to read the passed parameters from the URL.
Whatever I try, the result looks like:
http://localhost:8080/?v-r=uidl&v-uiId=7
Would be great to get a tip where to look at.
What I need is: name=paramvalue
param: name
value: paramValue
KR
Roland