restyle checkboxes into radio buttons

0
the way our application works we have checkboxes that trigger conditional visabilities only one can be selected, so having them styled as radio buttons would be nice. is there a way to do this?  
asked
3 answers
3

Use this widget: https://appstore.home.mendix.com/link/app/20/Mendix/Radiobutton-List ?

Regards,

Ronald

 

answered
1

I'm assuming your mimicking the behaviour of radiobuttons with an nanoflow to check one  boolean and uncheck all other booleans?

If it's just the styling then maybe this Codepen demo can be of some use?

Some other cool options for inspiration: https://freefrontend.com/css-checkboxes/

answered
1

I would suggest using an enumeration instead of booleans. The only downside is that the input boxes will be below all the options

answered