My XML is something like this.
.
.
.
</body>
<List>
<topicTitle>This is topic title</topicTitle>
<topDef>This is topic definition.</topDef>
</List>
I basically want to insert topicTitle
and topDef
into <li>
tags. And I am trying to do so with this code (code for topicTitle shown only for simplicity):
<!-- TemplateBeginRepeat name="List" -->
<!-- TemplateBeginRepeat name="Field.topicTitle" -->
<li>@@RenderComponentField(FieldPath+".value",
TemplateRepeatIndex)@@ </li>
<!-- TemplateEndRepeat -->
<!-- TemplateEndRepeat -->
But it doesn't seem to be working. Any ideas?