Print Results Button-Customize Output

Nov 01, 2017

I am working on an exam for a client and I need to remove the correct answers from the Print Results output. I found this article https://community.articulate.com/discussions/articulate-storyline/print-results-want-to-hide-the-correct-answers-column , but in Storyline 360 that line of code I don't see it in the way it is described. Do you know how to remove it and could you point me in the right direction?  I am not very skilled on the code side of things. Thanks so much.

5 Replies
Russell Killips

I took a look at the report.html file and I was able to remove the correct answers column.

I modified 2 lines of code.

I changed line 238
from: { elName: 'th', text: strings.correctAnswer, enabled: !survey},
to: { elName: 'th', text: strings.correctAnswer, enabled: false},

I also changed line 330
from: { elName: 'td', text: formatResponse(question.strCorrectResponse), enabled: !survey},
to: { elName: 'td', text: formatResponse(question.strCorrectResponse), enabled: false},

I have attached a report.html file with the two edits for you to take a look at.

This discussion is closed. You can start a new discussion or contact Articulate Support.