Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
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
Solved! Go to Solution.
The expression should result in a boolean value. So the expression to get desired result would be:
radiobutton.value=="1" || radiobutton.value=="2"
View solution in original post
Thanks Sakshi,
This works for me.
Much appreciated,
Views
Likes
Replies