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

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

  • 14 October 2021
  • 1 reply
  • 4 views

Badge +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.

icon

Best answer by TomG 14 October 2021, 20:41

View original

1 reply

Userlevel 7
Badge +27

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

Leave a Reply