Hi All
Page type is Quiz page type
1) Multiple choice
2) Multiple Answers
3) Two out of four answers are 'Correct'
4) Navigation buttons disabled (HOME, NEXT, BACK/PREVIOUS)
5) In the language field for Multi Answer Correct add something like: You have selected all the correct answers. Click next to continue.
6) Added script code
$("#checkBtn").click(function(){
if($('p').text().indexOf('Click next to continue.') != -1){
$("#x_nextBtn").button("enable");
}
});
Problem
If we get multiple choice answers correct, we get the 'Correct' message and the text we have added in the language 'Click NEXT to continue', but when clicking on NEXT we get overall mark, eg 2/2 and a 'Restart' button. Clicking on the 'Restart' button takes us back to start the quiz again, and we cannot move forward to the next page, because I have intentionally disabled the NEXT, BACK/PREVIOUS, HOME navigation buttons.
If we get multiple choice answers incorrect, get a message with 'Not correct' as well as 'Yes Correct' (might get one incorrect and two correct) and the message says 'Not correct' and can click on 'Next' where you can try again by clicking the 'Restart' button. But then if get correct the 'Restart' button just takes us back to the beginning of the quiz.
We want the navigation buttons BACK/PREVIOUS, NEXT and HOME disabled to force the user to take the quiz, but we want to remove the 'Restart' button and ensure that a 'Next' button is available to take us to the next page, if all answers in the multiple choice are correct. But if multiple answers in multiple choice are not correct, then 'Restart' is OK for the user to do again.
Is this possible please?
I think we are nearly there with this.
Thanks in advance for your help and I think other folk creating Xerte Quiz with multiple choice and multiple correct answers will find the solution very useful. I think it will be used a lot.
I attach screenshots too.
Thank you in advance for your help.
Anne