Visibility Expression | Adobe Higher Education
Skip to main content
famruch
Level 2
October 16, 2015
Beantwoord

Visibility Expression

  • October 16, 2015
  • 2 reacties
  • 1396 Bekeken

Hi Guys,

Please can someone tell me how to code this in the visibility expression of a text field 

radiobutton.value=="1";radiobutton.value=="2";

When I do it this way it only works (makes the textfield visible) when radiobutton.value=="1" doesn't work for radiobutton.value=="2"

Thanks,

Afam

Er kunnen geen reacties meer worden geplaatst op dit onderwerp.
Beste antwoord door Sakshi5

The expression should result in a boolean value. So the expression to get desired result would be:

radiobutton.value=="1" || radiobutton.value=="2"

2 reacties

Sakshi5
Adobe Employee
Sakshi5Adobe EmployeeAntwoord
Adobe Employee
October 16, 2015

The expression should result in a boolean value. So the expression to get desired result would be:

radiobutton.value=="1" || radiobutton.value=="2"
famruch
famruchAuteur
Level 2
October 16, 2015

Thanks Sakshi,

This works for me.

Much appreciated,

Afam