Enums/Value Lists only return number value
Enums/Value Lists only return number value
Comments
-
Hello,
Were only receiving int value from enum. While enums are traditionally used internally and not for display purposes, shouldnt there be an option to see a string value?
Peanut
-
Blessed Peanut,
I did some research and this is by design. One way you could display something other than the int value is to use a structure with the enum number values as keys and what you want to display as the value. A Lookup List could serve this purpose.