07-05-2018 04:51 PM
Buenas tardes, estoy haciendo un webscript para sacar un listado de folders, todo jala bien hasta que hago referencia a alguna propiedad del modelo;
<html>
<head>
<title>Carpeta ${folder.displayPath}/${folder.name}</title>
</head>
<body>
<p>Alfresco ${server.edition} Edición v${server.version} : dir</p>
<p>Contenidos de la carpeta ${folder.displayPath}/${folder.name}</p>
<table>
<#list folder.children as child>
<tr>
<td><#if child.isContainer>d</#if></td>
<#if verbose>
<td>${child.properties.modifier}</td>
<td><#if child.isDocument>
${child.properties.content.size}</#if></td>
<td>${child.properties.modified?date}</td>
</#if>
<td>${child.name}</td>
</tr>
</#list>
</table>
</body>
</html>
Eso me funciona sin problema, pero si quiero poner algo como ${child.properties[modelo:asunto]} no me deja, y dice que no existe, ¿cuál sería la manera correcta de mandarlo llamar?
Muchas gracias de antemano.
07-06-2018 05:30 AM
do like this :
child.properties["cm:name"];
07-06-2018 09:27 AM
Thank you, I did it as follows;
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.