Hello, I’m trying to find the syntax in order to d...
# advancedpdf
l
Hello, I’m trying to find the syntax in order to display the list of items inside a group item :
<#list record.item as line>
<#if f line.itemtype == "Group">
<#list line.???field??? as groupline>
</#list>
#else
...
</#if>
</#list>
Would you know how to do that please ? (thanks for your help)
question answered 1
d
Printing Group Items in Advanced Template – NetSuite Experiences
tldr;
make sure
Display Components on Transaction
is checked on the group item when looping through on the template, use
<#if item.itemtype == "Group">
to identify the group item/start. after that, each item will be a sub-item of that group. Until you reach
<#if item.itemtype == "EndGroup">
l
Thanks for your help ! I’ll browse through and try to find a solution with this option activated on the items.