Matrix table--vertical line to right of statements, horizontal line under scale points? | XM Community
Skip to main content
Hello,



Is there a way to add or view a 'T' in the matrix tables--i.e., vertical line to right of statements, horizontal line beneath scale points? (The same lines that are visible for matrix tables during edit-mode.)



Any thoughts? If possible, I would prefer the line colors to be: #104F8F



Thanks!
Hello @ehoffman ,



Paste the below code in the js(OnReady) of the matrix question



var jfe = false;

if(/^\\/jfe/.test(window.location.pathname)) jfe = true;

var q = jQuery("#"+this.questionId);

if(!jfe || (jfe && q.find('div.desktop').length > 0)) {

q.find("table").css("border-collapse","collapse");

q.find(" .Answers").css("border-bottom","2px solid #104F8F");

q.find(" .c1").css("border-right","2px solid #104F8F");

}

Leave a Reply