I’m having some trouble with the File field. I want to add photos to it, and I can do that easily. But the problem occurs when I want to view the image in the details section, where I want it to appear larger. However, there’s no option to resize the image because the field is not an Image field; now it’s a File field.
@Biner Have you explored using the custom details component? In that component you can customize the file/photo field to whatever size you need like this:
{{#each records}}
<p><img src="{{field_4036}}" alt="test" width="500"></p>
{{/each}}
1 Like
Thanks. that’s worked. now I just havve to adjust. thanks soo much. I have another question I already see and we don’t have this option in a PDF page. it’s possible to do the same for PDF?
You should be able to use the html component in pdfs to do the same thing. As a matter of fact, you could use the html component on the details page as well with pretty much the same code but without the {{#eachrecords}} {{/each}} tags
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.