Each in each pdf template

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Enju
    Senior Member
    • Apr 2018
    • 130

    Each in each pdf template

    Hello,
    I have pdf template for Opportunity:
    PHP Code:
    {{#each contacts}}
         
    Contacts Name: {{name}},
    {{
    #each attachmetsIds}} {{imageTag width=150 height=150 ./this}} {{/each}}
    {{/each}} 
    And I have a problem with displaying images. Is there a way to display images attached in the attachmens field for each contact associated with Opportunity?
  • victor
    Active Community Member
    • Aug 2022
    • 848

    #2
    The documentation describes the image insertion functionality only for the Image type field.

    HTML Code:
    {{#each contacts}}
    Contact name: {{name}}
    Contact image field: {{imageTag ImageFieldId width=100 height=100}}
    {{/each}}
    I tested with the File type field, and it seems to work for it too. However, for the Attachment Multiple field type, it doesn't work correctly even from Contact to Attachments. Not to mention the template for Opportunity, which should add images taken from related Contacts Attachment Multiple field type to PDF documents.​

    Comment

    • Enju
      Senior Member
      • Apr 2018
      • 130

      #3
      Hello victor
      When I use code:
      PHP Code:
      {{#each attachmetsIds}} {{imageTag width=150 height=150 ./this}} {{/each}} 
      for Contact pdf template, photos of all attachments are printed.
      I don't know why if I use the same code inside each in each it doesn't work:
      PHP Code:
      {{#each contacts}}
           
      Contacts Name: {{name}},
      {{
      #each attachmetsIds}} {{imageTag width=150 height=150 ./this}} {{/each}}
      {{/each}}​ 

      Comment

      Working...