Search code examples
typo3fluidfluid-layouttypo3-8.7.x

TYPO3 - inline f:section f:render dont work


i have a problem with the inline f:render:

<f:section name="sysCategory">
    <f:for each="{sysCategoryDetailArray}" as="category" iteration="iteration">
        <f:spaceless>{category.title}</f:spaceless>
    </f:for>
</f:section>

Works:

<f:render section="sysCategory" arguments="{_all}" />

Dont Work:

{f:render(section: 'sysCategory', arguments: {_all})}

Thanks for Help!


Solution

  • {f:render(section: 'sysCategory', arguments: _all)} is what you need.