Copy link to clipboard
Copied
Hello! I need to count the attempts of each quiz. With the questions I found a solution, I use
getQuestionScoredPoints = function () {
var att = this.currentAttempt;
return att;
}
But for a Drag and Drop task, this doesn't work. Please tell me how you can count the attempts there?
Copy link to clipboard
Copied
getQuestionScoredPoints = function () {
var att = cp.DD.CurrInteractionManager.m_ActiveInteraction.m_CurrentAttempt;
return att;
}