Change format of 'Exclude from analysis' response column in matrix grid | XM Community
Solved

Change format of 'Exclude from analysis' response column in matrix grid

  • 26 July 2021
  • 4 replies
  • 25 views

Userlevel 1
Badge

I'd like to be able to change the DK/NA column in my matrix grid to grey but keep all other columns white, so it's clear that option is separate from the other response options. But i can't find a way to do that. Has anyone else done this and able to explain how?
Thanks

icon

Best answer by grahulp5 26 July 2021, 21:51

View original

4 replies

Userlevel 4
Badge +13

You can find the class of that column let's say some SBS4 value and then add a css in OnReady JS:
example: jQuery('.c11').css('background-color','grey')

Please update the class which I used (c11) with the class which you can see for the last one.

Userlevel 1
Badge

Great thanks for responding. Where would I find the class of the last one?

Userlevel 4
Badge +13

Just take the console icon (arrow icon) to the column for which you want to update and get the class value (class="").

Userlevel 4
Badge +13

Just right click on the page to get the console screen and from there you can find an arrow icon at the left most area. Click on the icon and then take it to the element you want to find the class. For example the last scale point. There you can find the element's class, id and every other details. Just pick the class value

Also you can just press F12 for getting the space options.

Leave a Reply