Showing numbers on drag-and-drop rank order question answers BEFORE dragging | XM Community
Skip to main content
Question

Showing numbers on drag-and-drop rank order question answers BEFORE dragging

  • August 18, 2021
  • 2 replies
  • 165 views

Hiya!
I'm trying to get a rank order drag-and-drop question to display the default ranking numbers on the answers before a respondent starts dragging them. I haven't found any settings or custom code for doing that yet. Help?
Here's the question before it's been interacted with:
image.pngAnd here it is after any drag-and-drop interaction:
image.pngI want the blue numbers showing when the question is first presented. Thank you!

2 replies

Forum|alt.badge.img+22
  • Level 7 ●●●●●●●
  • August 18, 2021

Qualtrics.SurveyEngine.addOnReady(function () {
    this.questionContainer
        .querySelectorAll("span.rank")
        .forEach((item) => (item.style.visibility = "visible"));
});


  • Author
  • August 19, 2021

Perfect solution! Thank you so much for sharing this code, ahmedA !