Expand my Community achievements bar.

SOLVED

Visibility Logic

Avatar

Level 2

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

1 Accepted Solution

Avatar

Correct answer by
Level 3

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.

View solution in original post

4 Replies

Avatar

Correct answer by
Level 3

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.

Avatar

Employee

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

Avatar

Level 2

Thanks Mandeep,

Worked for me.

Much Appreciated,

Afam

Avatar

Level 2

Thanks Rishi,

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

Much appreciated.

Afam