Picture of Amir Elion
Navigating to a different page and maintaining submitted answer
by Amir Elion - Wednesday, 25 June 2014, 10:01 AM
 

Hi,

We have a multi-page Adapt, built on 1.0.

On the last page there are Multiple choice questions, which learners view and submit.

After a user submits, there may be cases where they want to get back to an earlier page in the module, and then return to the questions.

However, when they do that, the questions already answered and submitted on the page are reset and users need to answer those again.

Is there a way to keep those questions from resetting, i.e. maintain their answered status?

Note - this specific module does not use SCORM/Spoor.

Thanks,

Amir

Picture of Kevin Corry
Re: Navigating to a different page and maintaining submitted answer
by Kevin Corry - Wednesday, 25 June 2014, 10:28 AM
 

Hi Amir,

There is a JSON attribute for the question components that allows you to maintain their status on revisit: _isEnabledOnRevisit - I think setting this to false will give the desired result:

"_isEnabledOnRevisit" : false

 

Kevin

 

 

Picture of Daryl Hedley
Re: Navigating to a different page and maintaining submitted answer
by Daryl Hedley - Wednesday, 25 June 2014, 11:22 AM
 

Hey Amir,

Kevin is right - by putting _isEnabledOnRevisit:false on components stops it from being reset. We've just re-written questionView and a few of the questions to make things a bit easier. So in the next release you'll find this type of setting is turned off by default. We're also renaming the attribute to _isResetOnRevisit as it's a lot more descriptive. I'll post on the community once that changes has been made.

Thanks,

Daryl

Picture of Amir Elion
Re: Navigating to a different page and maintaining submitted answer
by Amir Elion - Wednesday, 25 June 2014, 12:43 PM
 

Thanks guys - the parameter worked like a charm!