Portal Engine Questions on portal engine and web parts.
Version 7.x > Portal Engine > Tag List View modes: 
User avatar
Member
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.

User avatar
Kentico Legend
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(',', ' ') %>

User avatar
Member
Member
kmiday-cuyahogalibrary - 1/23/2014 9:06:38 AM
   
RE:Tag List
THANK YOU!

I knew it had to be something simple!