[TYPO3-calendar] Re: Calendar Fluid List without day and hours

baumpaul baumpaul at mac.com
Wed Jan 24 10:42:24 CET 2018


The Fluid-Code was not right. Here is the right one:

<f:for each="{listView.master_array}" as="entriesOfADay" key="day" iteration="dayIterator">
					<f:if condition="{dayIterator.cycle} <= {settings.view.list.maxEvents}">
						<f:for each="{entriesOfADay}" as="entriesOfAnHour">
							<f:for each="{entriesOfAnHour}" as="event">
								<f:render partial="List/thumbnail"
									arguments="{event:event, settings:settings}" />
							</f:for>
						</f:for>
					</f:if>
				</f:for>


More information about the TYPO3-project-calendar mailing list