Not sure if I'm using this right, but this code should be able to give me information on the parent entity?
Documents: https://docs.espocrm.com/user-guide/...#each-iterator
I'm testing this on Task, with the Parent: Contact. Unfortunately all it giving me the Task name itself (twice).
It should be giving me the Parent (Contact) Name... and if it can do Parent name. Anyone use this formula or know how to get it to work?
Tested it on the demo but that doesn't seem to work, 3 sample handlebar I used in <code> view; all came out blank.
Documents: https://docs.espocrm.com/user-guide/...#each-iterator
Code:
{{#each contacts}} {{../name}} {{/each}}
It should be giving me the Parent (Contact) Name... and if it can do Parent name. Anyone use this formula or know how to get it to work?
Tested it on the demo but that doesn't seem to work, 3 sample handlebar I used in <code> view; all came out blank.
Code:
{{#each contacts}} {{../name}} {{/each}} {{#each task}} {{../name}} {{/each}} {{#each tasks}} {{../name}} {{/each}}
Comment