View optimization | XM Community
Skip to main content
Question

View optimization

  • June 29, 2021
  • 3 replies
  • 4 views

Hello
I want to show all my questions and scale at one view but it kept showing half of the scales like the attached pic.
There are 7 scales but it only shows 4 of them. I want to show all questions at a time without the sidebar.
Please let me know how to adjust the monitor view without affecting the mobile view.
qualtrics view problem.JPG

3 replies

grahulp5
QPN Level 3 ●●●
Forum|alt.badge.img+13
  • QPN Level 3 ●●●
  • June 29, 2021

You can update the th (statements) size via css (JS) in OnReady. It will solve your problem.

See to it that you update the value in % and not px because that might differ in phone as well.


  • Author
  • June 30, 2021

Thank you for your reply. But I am not sure how to update the th size in OnReady..
Could you clarify that for me, please?
Thank you.


grahulp5
QPN Level 3 ●●●
Forum|alt.badge.img+13
  • QPN Level 3 ●●●
  • July 12, 2021

Like first find the class of th or the first column of every "Tr" in tbody, it most probably would be "c1". Then upon on Ready add a line as jQuery('.c1').attr('style','width: xyzpx;')