[TYPO3-german] Re: Fluid_styled_content Media Iterator Spalte/Bild

Niels Tiedt nt at typo3-coder.org
Fri Feb 3 12:04:58 CET 2017


Hab die Lösung gefunden.
Man muss den Iterator bei der Reihe setzen.
Nicht logisch aber es geht.

<f:if condition="{gallery.rows}">
	<f:for each="{gallery.rows}" as="row" iteration="rowIterator">
		<f:for each="{row.columns}" as="column">
			<f:if condition="{column.media}">
				{rowIterator.index}
				{rowIterator.cycle}
				{rowIterator.total}
			</f:if>
		</f:for>
	</f:for>
</f:if>

Ergebniss:
0 1 9
1 2 9
2 3 9
3 4 9
4 5 9
5 6 9
6 7 9
7 8 9
8 9 9 


More information about the TYPO3-german mailing list