Skip to main content
Nintex Community Menu Bar

How to unhide the field after hiding by rule

  • September 11, 2020
  • 1 reply
  • 4 views

Forum|alt.badge.img+1

Hi all, just have checked the old post on field hiding by rule. Not sure where goes wrong for my rule.

 

My case is a simple radio button with Yes and No options. suppose the rule: Radio Button != "Yes" could work. Indeed the target field is hidden at first, but no matter what I choose the button, the field never show again.

 

Do I have to set up a rule for 'unhidding'? I don't see an option in 'then' is callded unhide...

 

Thanks in advance.

 

1 reply

Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • September 14, 2020
Hi,

A radio button control is a Boolean. This means the output is not Yes and No but instead it is true or false.
This means your rule should be.
not(equals(RadioButton,"true"))
or
equals(RadioButton,"false")