Hi all,
this is starting to drive me nuts.
I'm looking to give users the ability to create PDF:s from a table that changes based on the date they have chosen.
Now the issue here is that the amount of text in fields can change and as far as I know I can't use a flexible height gallery for the PDF function.
Now I have created an HTML table instead.
I have put that HTML control inside of an vertical container.
However, upon creating the PDF inside of powerapps it only renders the part of the HTML control that is shown on the screen.
So it always gets cut of in the middle.
I have set Expand containers to true
Set(
varMyPDF,
PDF(
Container11_10, {ExpandContainers: true}
)
)
And also tested different paper sizes. However the result is always the same, it gets cut off down the middle and not the entire table will show up in the PDF.
Am I missing a setting somewhere?
Or is the HTML control simply not properly supported with the PDF Function?