Hi,
I'd like to change the text at the right hand side (column) of a matrix constant sum question from "Total" to something else.
I found the syntax in another thread that changes the bottom total (row) : jQuery("#"+this.questionId+" .c1:last").html("New Total Label");
... but I couldn't figure out how to change this syntax to change the total column i.e. Statement Total Box, rather than Scale Point Total Box.
Thanks!
Solved
change "Total" text column on Constant Sum Matrix table
Best answer by Tom_1842
Hi there, if you still need, you can change the Statement Total Box label to display other text by adding the below code to the OnReady of the question's JavaScript:
var totallabel = document.getElementById("header~total~"+this.questionId);
jQuery(totallabel).html("New Total Label");
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.