Please advise:
1) dropdown field with values 1,2,3
2) description fields (desc1,desc2,desc3)
Goal:
a) if value is empty: hide all description fields
b) if value is 1: show desc1 (don't show 2 and 3)
c) if value is 2: show desc1 and desc2 (don't show 3)
d) if value is 3: show all desc1,2 and 3
~~~
so I set the conditional on dropdown filed:
display: field conditional others
in tab 1: operator = empty
then fields:
show (nothing)
hide: desc1,desc2,desc3
in tab 2: operator = 1
then fields: show desc1
hide: desc2,desc3
in tab 3: operator = 2
then fields: show desc1, desc2
hide: desc3
in tab 4: operator = 3
then fields: show desc1, desc2, desc3
hide: (nothing)
~~~
results: only when selecting 3 desc1,2,3 shows up - when selecting 1 or 2, or nothing, nothing is displayed
How do I fix it?
thanks