I created a simple JSF app, that presents a question for the user, and a set of possible answers as radio buttons.
When the user chooses the answer and submit, my bean updates the question and returns the same page, so that the new question is displayed. If the last question is reached, a finish page is returned with the results.
This is working fine, but the problem happens when the user clicks the browser back button and re-submits the form...this increments bean.currentQuestion and breaks my logic.
I tried f:ajax to update the question without page flip, but now i dont know how to present the finish page...
//index.xhtml
<h:form>
<div class="questionNumberDiv" id ="questionNumberDiv">
<h:outputLabel value="Question #{test.currentQuestion + 1}" for="questionLabel"/>
</div>
<br/>
<div class="questionDiv" id="questionDiv">
<h:outputLabel id ="questionLabel" value="#{test.questions[test.currentQuestion].question}"/>
</div>
<br/>
<div class="questionDiv" id="possibleAnswersDiv">
<h:selectOneRadio requiredMessage="Please, select one answer!" id="radio" layout="pageDirection" value="#{test.currentAnswer}" required="true">
<f:selectItems value="#{test.questions[test.currentQuestion].possibleAnswers}" var="y"
itemLabel="#{y}" itemValue="#{y}" />
</h:selectOneRadio>
</div>
<br/>
<h:panelGrid columns="2" styleClass="requiredMessage">
<h:commandButton value="next question" action ="#{test.processAnswer}" />
<h:message for="radio"/>
</h:panelGrid>
</h:form>
</h:body>
Bean method called when user hits 'next Question':
public String processAnswer()
{
Question q = questions.get(currentQuestion);
currentQuestion++;
userAnswers.add(currentAnswer);
if (currentQuestion == questions.size())
{
this.processResults();
return "finish";
}
else
{
return "index";
}
}
How can i solve this ?
Thanks!