06-19-2007 07:07 AM
06-25-2007 09:51 AM
<#– Table of the documents checked out to the current user –>
<#– Shows the Icon and link to the content for the doc, also the size in KB and modified date –>
<#assign query="@cm\\:lockOwner:${person.properties.userName}">
<#assign rowcount=0>
<table>
   <tr style='background-color: #C6D8EB'>
      <td></td>
      <td><b>Name</b></td>
      <td><b>Size</b></td>
      <td><b>Modified Date</b></td>
      <td><b>Location</b></td>
   </tr>
   <#list userhome.childrenByLuceneSearch[query] as child>
      <#if child.isDocument>
         <#if rowcount % 2 = 0><tr><#else><tr style='background-color: #DEE5EC'></#if>
            <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>${(child.size / 1000)?string("0.##")} KB</td>
            <td>${child.properties.modified?datetime}</td>
            <td>${child.displayPath}</td>
         </tr>
         <#assign rowcount=rowcount+1>
      </#if>
   </#list>
</table>
Hope this helps,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.