Constant Sum - How to get entry boxes on right side | XM Community
Solved

Constant Sum - How to get entry boxes on right side

  • 7 June 2018
  • 1 reply
  • 75 views

Badge
Hi all,

I'm using a constant sum feature to college data but I don't want the total box. However, without the total box, the entry boxes go to the left side of the question text. Is there a way to get them on the right side of the question text WITHOUT having a total box?

Thanks!
icon

Best answer by TomG 10 June 2018, 23:10

View original

1 reply

Userlevel 7
Badge +27
The easiest way to do it is to check the total box but hide the total row with JavaScript:
```
jQuery("#"+this.questionId+" li.Total").hide();
```

Leave a Reply