SOLVED
How to enable/disable a container based on multiple checkbox selections?
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
akhanna3
5 - Atom
‎06-15-2020
02:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello,
I am trying to enable/disable a container based on selections of two or more checkboxes. If any checkbox is unselected, the container should be disabled. However, in this example, if I uncheck the first checkbox but check the 2nd one, the container remains enabled. How do I fix this? Thanks
Solved! Go to Solution.
Labels:
- Labels:
- Apps
- Interface Tools
- Macros
1 REPLY 1
17 - Castor
‎06-15-2020
03:15 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @akhanna3
In a case like that it's better to use Radio buttons to avoid multiple selections on the same object that would cause issues.
Try something like this
Connect both checkboxes to the same action tool and change the expression to
IF [#1] AND [#2] =='true' THEN 'false'
ELSE 'true' ENDIF
Cheers,
