09-24-2008 12:04 PM
<type name="myco:fileSpace">
<title>MYCO File</title>
<parent>cm:folder</parent>
<properties>
<property name="myco:closureDate">
<type>d:date</type>
</property>
</type>
I want to see that "myco:closureDate" property in a custom view.09-25-2008 05:11 AM
<table>
<#– Get a list of all the property names for the document –>
<#assign props = space.properties?keys>
<#list props as t>
<#– If the property exists –>
<#if space.properties[t]?exists>
<tr><td>${t}</td></tr>
</#if>
</#if>
</#list>
</table>
<tr><td>${t} = ${space.properties[t]}</td></tr>
but this gives exceptions.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.