Populate Radio Button List

0
Hi – I’m a noob here and I’m trying to figure out how to populate a radio button list. I think I need an enumeration, which I’ve created, but I don’t see how to connect it to my radio button list. Can someone provide me with a link to instructions? I’ve searched but don’t find anything. Thanks much!
asked
2 answers
0

https://docs.mendix.com/refguide/radio-buttons

answered
0

Hi Melanie, welcome to Mendix. Hope you will become an enthousiast too.

The radiobutton is populated with the possible values of the attribute. All that is left for you to do, is to:

- change the type of the attribute to the enumeration that you have created.

- then replace the textbox of the attribute on the form with a radiobutton. One way is to just drag&drop the attribute from the toolbox to the form. Aniother is to add the radiobutton-element to the form and change its property ‘attribute’ to your attribute.

Radiobuttons are available for attributes of type boolean or enumeration.

 

answered