Multiple button widget

0
Hi team, I require to show only a single button as active/highlighted among 6 buttons that we click, and the remaining 5 buttons should be shown as inactive unless I click on that inactive button. As of now, I am using six boolean attributes to achieve this requirement by changing their boolean values.  I am using Mendix Studio Version 8.12. Please advise if we have any widget for this. Thank you in advance. Warm Regards, Ankit
asked
2 answers
1

Another way would be to use an enumeration with 6 values for the six buttons and let the value of the enumeration determine which of the buttons is active. This way you only have one attribute and you do not need to sync the booleans (to make sure only one button is active/highlighted).

answered
0

That sounds like the way to go, you have set it up as intended. There is no AppStore app/widget for this specific activate/deactivate sequence.

answered