Reputation: 929
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!
Upvotes: 1
Views: 1196
Reputation: 1419
You Need to write either arguments: variable
or arguments: '{variable}'
when writing in inline syntax.
Upvotes: 0
Reputation: 4271
{f:render(section: 'sysCategory', arguments: _all)}
is what you need.
Upvotes: 4