03-21-2008 06:20 PM
<#list companyhome.childByNamePath["/Company Home/Marketing Stuff/Whitepapers"] as child>
03-21-2008 07:00 PM
<table>
<#list companyhome.childByNamePath["/Company Home/Marketing Stuff/Whitepapers"].children as child>
<#if child.isDocument>
<tr><td><a href="/alfresco${child.url}" target="new">${child.properties.name}</a></td></tr>
</#if>
</#list>
</table>
04-17-2008 06:08 PM
<#ftl strip_whitespace=true />
<#setting locale="it_IT"/>
<#setting datetime_format="short" />
<!– path name of the space to be listed (case sensitive, must not include the /Company Home/ prefix) –>
<#assign folderName="Marketing Stuff/Whitepapers" />
<#if companyhome.childByNamePath[folderName]?exists>
<#assign folderObj=companyhome.childByNamePath[folderName]>
<table>
<tbody>
<!– Display all documents in the space –>
<#list folderObj.children as child >
<tr>
<td>${child.properties.name}
</td>
</tr>
</#list>
</tbody>
</table>
<#else>
<b>The space <i>${folderName}</i> does not exist…</b>
</#if>
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.