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

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


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()


Leave a Reply