Skip to main content
Participant
March 10, 2022
Question

How to count attempts in a Drag and Drop quiz

  • March 10, 2022
  • 1 reply
  • 698 views

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?

This topic has been closed for replies.

1 reply

TLCMediaDesign
Inspiring
March 10, 2022
getQuestionScoredPoints = function () {
var att = cp.DD.CurrInteractionManager.m_ActiveInteraction.m_CurrentAttempt;
return att;
}