I have this situation:
I am developing "Previous - Next" button navigation in a list of objects in view and after a new page is loaded I determine weather to show these buttons or not (if it's on the first page: don't show "Previous" button, if it's on the last page: don't show "Next" button). I can't use ajax refresh...
The problem:
After I return null from the bean after setting id for the first element on the new page , I do checks to determine if buttons need to be shown on the next page in the constructor of the bean, a piece of the view that has buttons doesn't get updated and to achieve want I want I have to manually refresh.
The code:
Piece of view with buttons:
<h:form id="navigationButtons">
<h:commandLink value="#{ui.previousPage}" action="#{home.previousPage}" rendered="#{home.showPreviousBtn}" />
<h:commandLink value="#{ui.nextPage}" action="#{home.nextPage}" rendered="#{home.showNextBtn}" />
</h:form>
In the bean: Methods that calculate what to show on the new page:
public String previousPage() {
//Setting a starting index for next page
getSessionBean().setStartingIndexOfListToShow(
getSessionBean().getStartingIndexOfListToShow() - getSessionBean().getCompany().getNumberWorkOrdersPerPage());
return null;
}
public String nextPage() {
//Setting a starting index for next page
getSessionBean().setStartingIndexOfListToShow(
getSessionBean().getStartingIndexOfListToShow() + getSessionBean().getCompany().getNumberWorkOrdersPerPage());
return null;
}
And a constructor of the bean, in which I determine if buttons need to be outputted:
public Home() {
//Determine if to show Next button
if (getSessionBean().getStartingIndexOfListToShow() <= getListWorkOrdersSize()
- 1 - getSessionBean().getCompany().getNumberWorkOrdersPerPage()) {
showNextBtn = true;
} else {
showNextBtn = false;
}
//Determine if to show Previous button
if (getSessionBean().getStartingIndexOfListToShow() >= getSessionBean().getCompany().getNumberWorkOrdersPerPage()) {
showPreviousBtn = true;
} else {
showPreviousBtn = false;
}
}
And another question: why when I put the last piece of code into prerender(), boolean vars never go to true. I think I don't understand something in a sequence of processes in the JSF application. I am just starting with this framework. Thanks in advance for your help!