Skip to main content
15-Moonstone
January 26, 2022
Solved

Viewing PDF/documents inside experience

  • January 26, 2022
  • 3 replies
  • 1749 views

Hello, I'm trying to view pdf documents via ionic popups into the experience, but it seems to show them only in the strange and small area you can see in the attachment. I also tried to change some popup CSS settings but I didn't find a way to solve this issue. any advice? many thanksSenzanome.jpg

Best answer by VladimirN

 Hi,

 

There was a similar question before - "PDF View into experience": https://community.ptc.com/t5/Vuforia-Studio/PDF-View-into-experience/td-p/504419 

3 replies

VladimirN24-Ruby IVAnswer
24-Ruby IV
January 26, 2022

 Hi,

 

There was a similar question before - "PDF View into experience": https://community.ptc.com/t5/Vuforia-Studio/PDF-View-into-experience/td-p/504419 

GianVal15-MoonstoneAuthor
15-Moonstone
January 26, 2022

Thank you. In my case i solved with these settings:

.my-custom-alert .popup {
 // min-width: 800px;
 border-radius: 0;
 width: 90%;
 scroll-behavior: auto;
 position: absolute;
}
$ionicPopup.alert({

 cssClass: 'my-custom-alert',
 title: "Documento parte",
 template: '<iframe src="app/resources/Uploaded/document.pdf#zoom=50" scrolling="no" frameborder="1" marginheight="0px" marginwidth="0px" height="600px" width="800px" allowfullscreen></iframe>',
 okText: "Close",
 })
24-Ruby IV
January 27, 2022

I'm glad you solved your problem.