I have a JSF page which is opened by an URL like test.xhtml?a=15&b=20
.
I have a link which should pass all URL parameters to the next page.
<h:link outcome="index" includeViewParams="true" value="Include all url parameters" />
I was expecting that when I click on the link it will go to index.xhtml?a=15&b=20
But I don't see anything in the URL. Did I understand the includeViewParams
wrong?