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
I tried setting it up in events, but if use something like this:
Basically these conditions cancel each other out, so the element can never be shown.
How can I make it work correctly?
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?
This topic is locked and no more replies can be posted.