Skip to content
Snippets Groups Projects
Commit 4d3495db authored by gnaegi's avatar gnaegi
Browse files

OO-806 mark test sumit dirty when all questions answered

parent 363b3dfd
No related branches found
No related tags found
No related merge requests found
......@@ -371,11 +371,14 @@ public class IQDisplayController extends DefaultController implements GenericEve
qtistatus.setQuestionProgressLabel(
translator.translate(
"question.progress.answered", new String[] {
""+ai.getAssessmentContext().getItemsAnsweredCount(),
""+answered,
qtistatus.getMaxQuestions()
}
)
);
// tell velocity if all questions are answered or there are unanswered questions
int maxQuestions = Integer.parseInt(qtistatus.getMaxQuestions());
myContent.contextPut("allQuestionsAnswered", answered == maxQuestions);
}
@Override
......
......@@ -34,7 +34,7 @@ function confirmSuspend() {
<strong>$qtistatus.getTitle()</strong>
#if ($qtistatus.isOpen())
#if ($qtistatus.isSurvey())
<a class="b_button" href="$r.commandURI("sas")" onclick="{if (o2cl()) return confirmSubmit(); else return false;}"><span>$r.translate("submitSurvey")</span></a>
<a class="b_button #if($allQuestionsAnswered) b_button_dirty #end" href="$r.commandURI("sas")" onclick="{if (o2cl()) return confirmSubmit(); else return false;}"><span>$r.translate("submitSurvey")</span></a>
#if ($enableCancel)
<a class="b_button" href="$r.commandURI("cancel")" onclick="{if (o2cl()) return confirmCancel(); else return false;}"><span>$r.translate("cancelSurvey")</span></a>
#end
......@@ -42,7 +42,7 @@ function confirmSuspend() {
<a class="b_button" href="$r.commandURI("suspend")" onclick="{if (o2cl()) return confirmSuspend(); else return false;}"><span>$r.translate("suspendSurvey")</span></a>
#end
#else
<a class="b_button" href="$r.commandURI("sas")" onclick="{if (o2cl()) return confirmSubmit(); else return false;}"><span>$r.translate("submitAssess")</span></a>
<a class="b_button #if($allQuestionsAnswered) b_button_dirty #end" href="$r.commandURI("sas")" onclick="{if (o2cl()) return confirmSubmit(); else return false;}"><span>$r.translate("submitAssess")</span></a>
#if ($enableCancel)
<a class="b_button" href="$r.commandURI("cancel")" onclick="{if (o2cl()) return confirmCancel(); else return false;}"><span>$r.translate("cancelAssess")</span></a>
#end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment