s
message has been deleted
n
I'm afraid I have to log in a minute but I strongly suspect as it's a sublist you need to treat it as such. If you've ever worked with the items sublist I think you'll find it will uses the same pattern. You're currently trying to access it as though it's a join to a record. I'd hazard something on the lines of:
<#list record.package>
<table><thead>...</thead>
<#packages as package>
<!-- iteration code/tags here -->
${package.packagedescr}
</#packages>
</table>
</#list>
Hopefully someone that's actually worked with the packages sublist can advise better
s
ah yea that makes sense. Havent worked with sublists in many months lol gotta refresh the brain.
n
No you cannot. You'd probably need to preload the data using a User Event. In the script, add the field and data and reference that field. Hope that makes sense, never easy replying via phone šŸ™‚
s
Thanks
<#listĀ record.packageĀ asĀ package>
....${package.packagedescr}
Ā 
</#list>
worked fine. Thanks!