Search for:
Sign in
Register
Menu
Articles
Questions & Answers
Download
Documentation
Support
Marketplace
Old Forums
Search:
Search text
Portal Engine
Questions on portal engine and web parts.
Version 7.x
>
Portal Engine
>
Tag List
View modes:
View mode
Threaded
Flat - newest to oldest
Flat - oldest to newest
Member
kmiday-cuyahogalibrary
-
1/23/2014 7:08:29 AM
Tag List
Hello,
I'm wondering how to get a list of document tags separated with simply a space in a transformation.
So far I've tried Eval("DocumentTags") and the get tags functionality for blog posts, but they all separate the tags with a comma.
Thank you in advance.
Kentico Legend
Brenden Kehren
-
1/23/2014 8:58:03 AM
RE:Tag List
In your transformation, you can simply use the standard .NET Replace() method.
<%# EvalText("DocumentTags").Replace(',', ' ') %>
Member
kmiday-cuyahogalibrary
-
1/23/2014 9:06:38 AM
RE:Tag List
THANK YOU!
I knew it had to be something simple!
Top