I'm using the excellent DCE Extension and want to loop twice in the Container through the Child-DCEs using the fields of each Child.
In Pseudocode something like this: Container Template:
<div id="foo">
<f:for each="{dces}" as="dce">
{dce.fields.title}
</f:for>
</div>
<div id="bar">
<f:for each="{dces}" as="dce">
{dce.fields.bla}
</f:for></div>
How can I do that?
In DCE container definition, just use
and nothing at all in template (2nd tab of DCE defintion).