Is there possible to add custom sublists to advanc...
# suitescript
m
Is there possible to add custom sublists to advance field? I tried to add my custom sublists using the same way to add item list on my advance pdf template but it only show my item list.
Copy code
<#if record.recmachcustrecord9?has_content>
<table border="1" cellpadding="6" cellspacing="0" style="width:100%;" text-align="left"><#list record.recmachcustrecord9 as container><#if container_index==0>
  <thead>
    <tr style="border-bottom:1">
 	<th scope="col" style="width:20%">&nbsp;${container.custrecord_container_no@label}</th>
	<th scope="col" style="width:20%">&nbsp;${container.custrecord_net_weight@label}</th>
	<th scope="col" style="width:20%">&nbsp;${container.custrecord_seal_number_1@label}</th>
	<th scope="col" style="width:20%">&nbsp;${container.custrecord_seal_number_2@label}</th>
	<th scope="col" style="width:20%">&nbsp;</th>
	</tr>
    </thead>
	</#if>
	<tr>
	<td>${container.custrecord_container_no}</td>
	<td>${container.custrecord_net_weight}</td>
	<td>${container.custrecord_seal_number_1}</td>
	<td>${container.custrecord_seal_number_2}</td>
	<td>&nbsp;</td>
	</tr>
	</#list>
  </table>
</#if>