titan61
titan61

Reputation: 33

Umbraco Extending Tags

I am new to Umbraco CMS, so this question may sound silly. The requirement is to show the tags (based on a specific tag group) to editors in a dropbox, and they could able to choose these tags and save it to the article. What is the best way of achieving this?

Upvotes: 0

Views: 314

Answers (1)

Tim Miller
Tim Miller

Reputation: 101

The tag property allows free text entry. If you only want editors to select from a predefined list of options you will probably need to do this a different way. You may want to try the dropdown property with the multiple choice option turned on instead. Then you can setup the prevalues (options) ahead of time and your editors can only select from that list.

You could also create a container in the tree for your categories and then allow your admins to select the appropriate items from that list using a multinode tree picker. Here's kind of an example of how you might structure this for a blog:

Blog
    Authors
        Author
    Categories
        Category
    Posts
        Post

Then when an admin adds a new post you would allow them to select the appropriate authors/categories for the post using a multinode tree picker.

Upvotes: 1

Related Questions