So Basically I have a database called Device Infos, It has data of phones. The fields in the data type are Device Name, Device Model, Device color (List of texts), Device Storage (List of Texts). I want the user to have a drop down where they can select their devices color and storage. I am trying to create a dropdown out of the storage but it shows as 256,123,455 instead of:
Sounds like your text list is being fed in as a single item text field. If the field on your device datatype is definitely a list of texts (not a single field containing a comma delimited list), then you should be able to just feed that directly into the dropdown.
Either the field isn’t set to be a list of texts, or you are modifying the structure somewhere before it hits the dropdown.
If you really want to keep the single text field, you could just use a split by(,) operator to create the list client side.
Currently you’re using a List of Text as your Option Caption (the same List of text as your Choices Source - which measn each option will display as the full list of Text).
In your case the Option Caption should just be ‘Current Option’