I want to pass the number each of clicks page of search results from tables in the browser with JSF commandLink Tag. But it does not work. I always get the following URL: http://localhost:myport/kundenVerwaltungWebClient/searchPerson.jsf
The URL in the browser should look something like this: http://localhost:myport/kundenVerwaltungWebClient/searchPerson.jsf?pageNum=6
Here is the view (searchPerson.xhtml):
... <!-- The paging links -->
<t:dataList value="#{controller.pages}" var="page">
<h:commandLink value="#{page}" actionListener="#{controller.page}"
rendered="#{page != controller.currentPage}" >
<f:param name="pageNum" value="#{page}" />
</h:commandLink>
<b><h:outputText value="#{page}" escape="false"
rendered="#{page == controller.currentPage}" /></b>
</t:dataList> ...
Here is the managed bean:
@ManagedBean @SessionScoped public class Controller { private String pageNum; ... //Getter and Setter }
Can someone please tell me what I do wrong here?
I thank you in advance.