Hello,

I have an Enum to represent possible Options for a selectList
e.g
enum options {
  blueish="Blue",
  redish ="Red"
}
and I want the List-Entrys to say
"blueish" or "redish".
the value send to the app should be
"Blue" or "Red".
I can use __traits(allMembers,Enum)
for the identifiers, but how do I get the Values ?

Reply via email to