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?
I've solved the problem with a Viewhelper:
And in the Containertemplate (no need for a Child template)