HELP NEEDED ASAP. I want to grey out columns 1, 2, and 3 if there is no text in the text boxes. | XM Community

HELP NEEDED ASAP. I want to grey out columns 1, 2, and 3 if there is no text in the text boxes.

  • 27 December 2022
  • 4 replies
  • 14 views

Badge

So if the text box for "Enter Additional Area 1" is blank, I want the radio buttons dimmed. If there is text, I want them undimmed. Can someone help me do that?
QualtricsColumns.jpg


4 replies

Userlevel 4
Badge +13

You will need to use a "keyup" trigger to modify the css of the buttons for all the rows.

Badge

What is that? Can you give me an example?

Userlevel 4
Badge +13

That should look something like below:
jQuery('input[type="text"]').keyup(function(){
  //change the color css of the radion button code
      });

  

Badge

Thanks for your help!

Leave a Reply