02-08-2010 04:19 PM
<categories>${row.properties["cm:categories"]}. However, I am getting an error. I would like to find out if there is a way to get the list of categories. Ideally, I would like to get a comma separated list of categories.02-08-2010 04:44 PM
<categories><#list row.properties.categories![] as c>"${c.name?xml}"<#if c_has_next>,</#if></#list></categories>02-08-2010 07:00 PM
<#assign datetimeformat="EEE, dd MMM yyyy HH:mm:ss zzz">
<html>
<body>
<h3>Step Documents</h3>
<table>
<tr>
<td>Name</td>
<td>Size</td>
<td>Description</td>
<td>Category</td>
<td>PID</td>
<td>SID</td>
<td>TID</td>
<td>Created</td>
<td>Modified</td>
</tr>
<#list stepdocs as row>
<tr>
<td>${row.properties.name}</td>
<td>${row.size}</td>
<td><#if row.properties.description?exists>${row.properties.description!}</#if></td>
<td><#if row.properties["step:category"]?exists>${row.properties["step:category"]?string}</#if></td>
<td><#if row.properties.pnum?exists>${row.properties.pnum!}</#if></td>
<td><#if row.properties.cnum?exists>${row.properties.cnum!}</#if></td>
<td><#if row.properties.keywords?exists>${row.properties.keywords!}</#if></td>
<td>${row.properties.created?string("yyyy-MM-dd HH:mm Z")}</td>
<td>${row.properties.modified?string("yyyy-MM-dd HH:mm Z")}</td>
</tr>
</#list>
</table>
</body>
</html>
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.