Hey guys.
I'm working with Dynamics 365 entity and I am trying to display possible options that can be chosen in a dropdown. An issue I ran into which is more about user-friendly side - it is displaying enum technical names from dev side, not the labels. Dropdown is being used to change types and patch it back to entity.
Here is an example of how the dropdown options look:
Steel
WroughtIron
BrushedCopper
BrushedSteel
AlkalineMetal
And here is how I'd like it to look (it looks like this in D365 dashboard since it is displaying labels):
Steel
Wrought iron
Brushed copper
Brushed steel
Alkaline metal
Here is the expression I am using to display the dropdown options to choose from:
DataSourceInfo(D365Entity, DataSourceInfo.AllowedValues, "Metals")
Is there a possibility to display the labels instead?