Hide Scale Points on a Matrix Table | XM Community
Skip to main content
Question

Hide Scale Points on a Matrix Table

  • May 22, 2020
  • 1 reply
  • 47 views

Rusty
Level 1 ●
Forum|alt.badge.img+2

I am attempting to hide scale points on a matrix table. I found a javascript to help with this task, but can't get it to work. What am I doing wrong? I am attempting to hide the first scale point "x" for the first statement "platforms" in Question 23.
image.png


1 reply

SurajK
QPN Level 3 ●●●
Forum|alt.badge.img+4
  • QPN Level 3 ●●●
  • May 22, 2020

Add the below code to addOnReady function,
jQuery('tbody tr:eq(0)').find('td:eq(0)').find('.q-checkbox').hide()

If this don't work then along with the above code, add one more line,
jQuery('tbody tr:eq(0)').find('td:eq(0)').find('input[type="checkbox"]').hide()