Can someone help me debug this code. I am able to call the customer's fields and loop through them successfully, but I cannot reference each custom field directly.
Output...
Code:
<mvt:item name="customfields" param="Read_Customer_ID(l.settings:customer:id, '')" />
<mvt:foreach iterator="field" array="customfields">
Code(&mvte:field:code;)<br/>
Name(&mvte:field:name;)<br/>
Value(&mvte:field:value;)<br/>
</mvt:foreach>
Attempt1: Terms(&mvte:customfields:terms;)<br />
Attempt2: Terms(&mvte:global:customfields:terms;)
HTML Code:
Code(terms) Name(Terms) Value(30) Code(termsPercent) Name(Terms Percentage) Value(0) Code(termsDays) Name(Terms Days) Value() Attempt1: Terms() Attempt2: Terms()
Comment