Hi Team,
I have challenge where in when the PDF is there on the screen ,check box should be enabled after user scrolls down the complete text.
conforming that PDF has read completely ... please assist , if we have any component or functionality exists.
Thanks
Hi, what component are you using to display the PDF? Perhaps it could trigger some event when the user reaches the bottom of the view.
Hi,
Create a modal or popup with fixed height, display an iframe (the pdf will be opened inside it) and when the user scrolls to the bottom of the page they will have the option to select the checkbox.
Hi Lucas,
Thanks much for the reply,
could you please guide me how can I achieve this , the PDF I should save in database or I can fetch the PDF from server , Please assist.
Lets do it,
Create a webblock and use it to:
In preparation does download of binaray (save=no).
Create a new page, reuse the webblock and create div checkbox.
Use Js to manipulate view, e.g: Expand the size of iframe to max, hide the scrollbar, when in bottom of page show the div checkbox.
or Use iframe, or a forge components to view PDF and, the same reasoning.
https://www.outsystems.com/forums/discussion/45596/how-to-open-pdf-in-new-tab/
https://www.outsystems.com/forums/discussion/46300/pdf-view-in-web-application/
Hi Nandini,
You can use javaScript to enable check box on scroll end.
javascript:
function scrolled(e) { if (myDiv.offsetHeight + myDiv.scrollTop >= myDiv.scrollHeight) { scrolledToBottom(e); } } Hope this helps. Thanks.
function scrolled(e) { if (myDiv.offsetHeight + myDiv.scrollTop >= myDiv.scrollHeight) { scrolledToBottom(e); } }