Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi, I'm using a Data Type that uses the property editor "Tags" (Umbraco.Tags).
I use this data type in a Document Type in Umbraco. The storage type of the tags is Csv, but I also tried json, but it doesn't seem to work either.
When I add tags in an instance of the document type it looks like this:
But when it appears on the page it looks like this:
This is the only data type where this happens, all other data types that I use in this document type work fine. Textstring and Textarea for example.
Any ideas?
Hi Sverrir
Try to use this code:
@Html.Raw(HttpUtility.HtmlDecode(tagValue));
Thanks,
Alex
Thanks Alex!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Non-english characters are encoded
Hi, I'm using a Data Type that uses the property editor "Tags" (Umbraco.Tags).
I use this data type in a Document Type in Umbraco. The storage type of the tags is Csv, but I also tried json, but it doesn't seem to work either.
When I add tags in an instance of the document type it looks like this:
But when it appears on the page it looks like this:
This is the only data type where this happens, all other data types that I use in this document type work fine. Textstring and Textarea for example.
Any ideas?
Hi Sverrir
Try to use this code:
Thanks,
Alex
Thanks Alex!
is working on a reply...