how Can we get the output format to CSV instead of HTML in Alfresco using webscripts?
- by pavan123
how Can we change the output format to CSV instead of HTML in Alfresco using webscripts?
below are the my corresponding FTL and Webscript files
recursive.get.html.ftl
<#macro recurse_macro node depth>
<#if node.isContainer>
<tr>
<td>
${node.properties.name}
</td>
<td></td>
…