Hello,
I am trying to create Content presenter template for multiple content items for WCP 12c.
The below code works - It is listing out all the content items in a folder. (Including Documents and Folder)
But when I click on the folder hyperlink, I'm not getting the folder contents instead I am getting the same page.
<dt:contentListTemplateDef var="nodes">
<af:panelGroupLayout layout="scroll" id="nodeListPanel" valign="middle"
rendered="#{not empty nodes}">
<af:iterator rows="0" var="node" varStatus="iterator" value="#{nodes}" id="it0" >
<dt:contentTemplate node="#{node}"
view="oracle.webcenter.content.templates.default.list.item"
nodesHint="#{nodes}"
id="ct0"/>
</af:iterator>
</af:panelGroupLayout>
</dt:contentListTemplateDef>
I saw #{node.isFolder} returns a boolen value if the node is a folder.. but I am not sure how to use it here. Please advise.
Thanks as always!