You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we randomize questions on the page, we want to know the order that those questions appear to the user, and save this with the response. Recording and saving with the state might help with: #151
The text was updated successfully, but these errors were encountered:
letquestionOrder=[];survey.onAfterRenderQuestion.add(function(survey,options){questionOrder.push(options.question.name);});// After the survey is completed, you can see the order of questionssurvey.onComplete.add(function(result){console.log(questionOrder);});
Strictly speaking, this only records the chronological order they were displayed in, not the visual order on the page
When we randomize questions on the page, we want to know the order that those questions appear to the user, and save this with the response. Recording and saving with the state might help with: #151
The text was updated successfully, but these errors were encountered: