I am trying to create 3 group check boxes each containing 2 values,where the other 2 gets disabled when one of them is selected? is it possible in mendix?

0
like there will be 3 groups each group will contain 2 checkbox and once one of the checkbox of a group is selected ,the other two group checkboxes has to be disabled. How can we do so?
asked
1 answers
0

There are mutliple ways to do it, may be you can try the following:
Add a boolean attribute to your entity say 'CheckboxSelected' and use this to control the editability of all the checkboxes.
Add on change logic on all the checkboxes which would toggle this attribute 'CheckboxSelected''

answered