Pick, Group, Rank Question: How to swap location of items list and grouping boxes? | XM Community
Skip to main content
Solved

Pick, Group, Rank Question: How to swap location of items list and grouping boxes?

  • October 14, 2021
  • 1 reply
  • 8 views

Forum|alt.badge.img+1

I'm looking for a way to swap the locations of the items list and the boxes for grouping in the Pick, Group, Rank question. Specifically, I want to place the items list on the right-hand side, and the boxes on the left.
Does anyone know how to do this? Thanks in advance.

Best answer by TomG

Like this:
Qualtrics.SurveyEngine.addOnload(function() {
var q = jQuery("#"+this.questionId);
q.find(".groupsContainerTd").after(q.find(".itemsContainerTd"));
});

1 reply

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • Answer
  • October 14, 2021

Like this:
Qualtrics.SurveyEngine.addOnload(function() {
var q = jQuery("#"+this.questionId);
q.find(".groupsContainerTd").after(q.find(".itemsContainerTd"));
});