Visibility Logic | Community
Skip to main content
famruch
New Participant
October 16, 2015
Solved

Visibility Logic

  • October 16, 2015
  • 4 replies
  • 2025 views

Hi Guys,

I have got a yes/no radio button and a textfield. I want to make the textfield visible/hidden based on whether the user selects yes or no. In the Visibility expression of the textfield, I can enter radiobutton.value == "1" to make it only visible if the user selects the yes option. The problem with this method is that in the initial layout of the form the textfield is hidden and then becomes visible when the user selects yes.

Please does anyone know how I can have the textfield visible to start off with and then when the user selects no, the textfield is hidden?

Thanks very much,

Afam

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by rishim22446870

There could be three solutions to your problem:

a) Suggested by mandeep.

b) You can use this visible expression in text field, (radiobutton.value === null ? true : (radibutton.value == "1")) . Assuming you have no default value set.

c) Set a default value for the radio button.

4 replies

rishim22446870
rishim22446870Accepted solution
Employee
October 16, 2015

There could be three solutions to your problem:

a) Suggested by mandeep.

b) You can use this visible expression in text field, (radiobutton.value === null ? true : (radibutton.value == "1")) . Assuming you have no default value set.

c) Set a default value for the radio button.

Employee
October 16, 2015

Can you try radiobutton.value != 0 ??  (supposing 0=No )

famruch
famruchAuthor
New Participant
October 16, 2015

Thanks Mandeep,

Worked for me.

Much Appreciated,

Afam

famruch
famruchAuthor
New Participant
October 16, 2015

Thanks Rishi,

Tried your solution 1 & 2 and both worked for me.

Much appreciated.

Afam