We’re aware that the eSupport site is currently down, preventing community login. Our team is actively working on a fix and we’ll share updates as soon as possible.
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 thanks
Solved! Go to Solution.
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
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
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",
})
I'm glad you solved your problem.