2
votes

I have a requirement to store a list of designers with logos and some bio information in my Umbraco CMS. I created a document type called 'Designer' with all those properties. I'd like to now create a dropdown list with those designer names so I can associate it with other document types. How do I create this dropdown? I'm using the v7 of umbraco.

2

2 Answers

0
votes

As I understand, your intention is to let editors pick designers from the designers dropdown when editing content items in the backoffice.

If so, you may want to either use an existing data type called 'Dropdown' or create a custom data type.

If you only want the names in the dropdown, the default 'Dropdown' data type may suffice. Take a look at the article explaining how to customize the 'Dropdown' data type

Otherwise (say, if you want to show the avatar of the designer in your designer picker), you may want to implement your custom property editor (designers picker) and a custom data type related to it. Then you will be able to associate your data type with any document type you want.

A couple of useful links in this case: