Hi All,
Created a Power App to upload a PDF file to a SharePoint Document Library and included the PDF Viewer control so the user can preview the file that they selected via the Attachment control before submitting the file.
I reset all the controls (dropdowns, date pickers, text fields, etc.) after they hit the Submit button, however I am not able to reset the PDFViewer control. It just continues to display the last file that was selected via the Attachment control. Tried various options but with no luck.
Any ideas welcome!
Thanks
Mark
Hi @rmc ,
Pdf viewer control is not a resetable control.
So resetable function will not work for this control.
As an alternative way, you could change the pdf's Document based on a variable.
When you click the submit button, the variable value change.
For example:
Set the screen's OnViSible:
Set(var,true)
Set the submit button's OnSelect:
SubmitForm(Form1);ResetForm(Form1);Set(var,false)
set the pdf viewer's Document:
If(var,Last(attachment controlname.Attachments).Value,SamplePdf)
Then if you submit the form, the pdf viewer will display sample pdf.
Best regards,
Thank you @v-yutliu-msft ,
The only issue with that is it shows the default text "Lorem ipsum..." and I would like it to be blank. Do know where the SamplePDF file is located and can we edit it?
Found a solution, I just created an additional PDFViewer control on top of the existing one and toggled the Visible property to mask the original control.
Thanks
Mark
That's a good idea.
Another idea is that the visible could be false on the same control if no PDF file is there. To avoid invalid code, you'd need to use the Sample PDF as the value of Document. You would do this by checking if another part of your app has defined the PDF using an IF statement - if it has not, you would do what's described here - this IF statement would also be on the "Visible" property of the control as well.
This is in case you want to avoid using more than one PDF control.
If you are masking the other one, you may already be somewhat doing this. The next step to make it a little bit cleaner is to make it so that you use one and not two controls.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
190 | |
54 | |
42 | |
38 | |
33 |
User | Count |
---|---|
256 | |
78 | |
73 | |
69 | |
68 |