Constant Sum - How to get entry boxes on right side | XM Community
Skip to main content
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!
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