Solved
Browser Printing Review shows scrollbars instead of the whole content on the screen
When I use dynamic layout tabs in Pega 8.7.3. I opened the work object in a tab and print the screen by browser Print feature, Printing Review shows a scrollbar instead of the whole content on the screen and it is exceeding the size of the page and hence print is getting cut off. See screenshots. Please help!
***Edited by Moderator Marije to add Capability tags***
@Dipti Aggarwal Thank you very much for the hint, @media print works for me, I have found the resolution by different code.
Add this in portal Harness CSS:
@media print {
.iframe-wrapper {
height:2800px; /*Preset capability to 3 pages*/
}
}