39
Views
2
Comments
Solved
[Ultimate PDF] Check box visible during pdf
ultimate-pdf
Reactive icon
Forge asset by Leonardo Fernandes
Application Type
Reactive

Hi all,

I am using Ultimate PDF converter , in that I want check box selected in generated pdf .

As of now when I am selecting check box the selection is not visible in pdf .

Anyone has any idea about this would be appreciated.


Que.JPG
UserImage.jpg
Francisco Calderón
Solution

Hi Pooja,

Please take a look at the following post, it should help you understand the problem better and the way to fix it:

https://www.outsystems.com/forums/discussion/69794/unable-to-get-filtered-data-into-pdf/#

The key takeaway is that the Ultimate PDF basically "navigates again" to the screen that you are turning into a PDF, so it will show only the "Default" data unless you use the Screen's input parameters to correctly update the UI elements. In this case, you can use an input parameter called "ShowCheck" (type Boolean) in the screen you want to render, and pass a value for it via the PrintToPDF actions like this:

"https://myenvironmenturl.com/MyApp/MyScreen?ShowCheck=" + ShowCheck

I did a quick test in Reactive and it seems to work fine. Hope it helps!

2021-09-21 09-26-31
Aadhavan Shanmugam
UserImage.jpg
Francisco Calderón
Solution

Hi Pooja,

Please take a look at the following post, it should help you understand the problem better and the way to fix it:

https://www.outsystems.com/forums/discussion/69794/unable-to-get-filtered-data-into-pdf/#

The key takeaway is that the Ultimate PDF basically "navigates again" to the screen that you are turning into a PDF, so it will show only the "Default" data unless you use the Screen's input parameters to correctly update the UI elements. In this case, you can use an input parameter called "ShowCheck" (type Boolean) in the screen you want to render, and pass a value for it via the PrintToPDF actions like this:

"https://myenvironmenturl.com/MyApp/MyScreen?ShowCheck=" + ShowCheck

I did a quick test in Reactive and it seems to work fine. Hope it helps!

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.