Show textbox only if two radio buttons (in same field) are checked

taro8 01 Oct, 2015
Hello.

I have a bit of trouble. I want to make one element (radio button) show up only if one of two radio buttons (different element) is checked (there are more then those two). If any other option is checked the element is hidden.

It looks like this

hardwaretype(radio button):
pc <- makes the element  appear
laptop <- makes the element  appear
gps
printer
other

element (hidden element with appears only when either pc or laptop is checked above):
yes
no


I tried setting it up in events, but if use something like this:
show if New value =pc
hide if New value !=pc
show if New value =laptop
hide if New value !=laptop


Basically these conditions cancel each other out, so the element can never be shown.

How can I make it work correctly?
GreyHead 01 Oct, 2015
Answer
1 Likes
Hi taro8,

You can do it with custom JavaScript, or using the events I think you have to use
hide if New value = gps
hide if New value = printer
hide if New value = other

Bob
This topic is locked and no more replies can be posted.