I have an issue with displaying PDFs inside my app.
I have a repeating group which has list of invoices (or whatever documents) and one of them is a PDF attachment.
I have found this awesome way to show them using the HTML object + following HTML Code:
<embed
src= "here is the link to the pdf"
type="application/pdf"
width="100%"
height="100%"
/>
Result;
But no matter if I use CS classes or use other parameters to scale this - I cannot make this PDF display without sliders. The goal would be to see it as a small miniature so the customer can identify the document type and download only the ones, he sees fit.
Anybody has already found a solution to properly scale it?
I have tried different zoom/width/length commands as well as scale parameters in CSS.
But never I was satisfied with the result.