Picture of james exton
how to add results component for assessment?
by james exton - Monday, 6 October 2014, 10:50 AM
 

This is a fairly straightforward question, i cannot find any information on the results component that is mentioned in the assessment PDF.

My question is how do i use the assessment extension with the tutor plugin and produce a results page at the end of the questions in my article?

 

Thanks 

James

Picture of David Lockwood
Re: how to add results component for assessment?
by David Lockwood - Wednesday, 22 October 2014, 4:54 AM
 

I got this working by adding the following json to the article in my articles.json file. The sample at https://github.com/adaptlearning/adapt-contrib-assessment is missing the "_isEnabled":true 

This causes a pop up at the end saying "You have finished the assessment" etc.

"_assessment": {
"_isEnabled":true,
"_isPercentageBased" : true,
"_scoreToPass" : 60,
"_completionMessage" : {
"title" : "You have finished the assessment",
"message": "You have scored [SCORE] out of [MAXSCORE]. [FEEDBACK]"
},
"_bands": [
{
"_score": 0,
"feedback": "You must try harder"
},
{
"_score": 25,
"feedback": "I think you can do better than this"
},
{
"_score": 50,
"feedback": "Good effort, you're getting there..."
},
{
"_score": 75,
"feedback": "Excellent!"
}
]
}

Picture of Daryl Hedley
Re: how to add results component for assessment?
by Daryl Hedley - Wednesday, 22 October 2014, 8:11 AM
 

Hey David,

Would you mind making a PR for this please?

Thanks,

Daryl