I'm making a Qualification Test with a multi-answer checkbox question.
<AnswerSpecification>
<SelectionAnswer>
<StyleSuggestion>checkbox</StyleSuggestion>
<Selections>
<Selection>
<SelectionIdentifier>grammar</SelectionIdentifier>
<Text>Bad grammar.</Text>
</Selection>
<Selection>
<SelectionIdentifier>spelling</SelectionIdentifier>
<Text>Bad spelling</Text>
</Selection>
<Selection>
<SelectionIdentifier>punctuation</SelectionIdentifier>
<Text>Bad punctuation</Text>
</Selection>
...
</Selections>
</SelectionAnswer>
</AnswerSpecification>
The question shows up fine, however, the AnswerKey.xml validates, but does not work correctly.
<Question>
<QuestionIdentifier>my_question_id</QuestionIdentifier>
<AnswerOption>
<SelectionIdentifier>grammar</SelectionIdentifier>
<AnswerScore>5</AnswerScore>
</AnswerOption>
<AnswerOption>
<SelectionIdentifier>punctuation</SelectionIdentifier>
<AnswerScore>5</AnswerScore>
</AnswerOption>
</Question>
If the worker selects both "grammar" and "punctuation", the final score should be 10, but it comes out to zero.
Anyone else have this problem?
Thanks,
Linda