03-23-2009 10:54 AM
03-23-2009 06:06 PM
<html><head></head>
<body>
<#– Table of docs in a specific folder –>
<h3>${space.name} documents</h3>
<table cellpadding=2 border=0 style="BORDER: 1px;">
<tr>
<td></td>
<td><b>Name</b></td>
<td><b>Title</b></td>
<td><b>Last Modified</b></td>
<td><b>Categories</b></td>
</tr>
<#assign query = ".//*[subtypeOf('cm:content')]">
<#list space.childrenByXPath[query] as child>
<tr>
<td><a href="/alfresco${child.url}" target="new"><img src="/alfresco${child.icon16}" border=0></a></td>
<td><a href="/alfresco${child.url}" target="new">${child.properties.name}</a></td>
<td><a href="/alfresco${child.url}" target="new">${child.properties.title}</a></td>
<td>${child.properties["cm:modified"]?string("dd-MMM-yyyy hh:mm")}</td>
<td>
<#list child.properties["cm:categories"] as prop>
${prop.name}<br/>
</#list>
</td>
</tr>
</#list>
</table>
</body>
</html>
03-24-2009 06:34 AM
10-09-2009 05:01 AM
04-08-2010 06:01 AM
r.properties["categories"][0]
has just an id property but not a name.04-12-2010 03:58 AM
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.