Fetching data from mendix db

0
I have created radio buttons. Is there any possibility that I can fetch the existing String value(instead of Enum and Boolean) from the Db for the radio buttons? Can anyone please help regarding this.
asked
2 answers
0

Hi Sunil, 

The only possible way to show String values in the native radio buttons is by using a referenced data set as a data source. Is that what you mean? 

Find info on this here

answered
0

Getting the string of an enumeration can be done with

getKey($YourObject/YourAttribute)

Boolean is always ‘true’ or ‘false’

answered