I tried printing multiple pages in react, but it was only printing first page, facing this issue for quite sometime now and i don't see how do i resolve it? is it npm issue? if not can you guys help me in this?
CodeSandbox
Here, it only prints whats visible and does not prints what's on scroll
https://codesandbox.io/s/react-to-print-slu5d
Thanks
It print only the first page because your component which you want to print have overflow: scroll :
You should print only the child of the div which have the scroll to get its full content
Just like this : https://codesandbox.io/s/react-to-print-bfybw
@ishan7 does @metzgegu's solution work for you?
It print only the first page because your component which you want to print have
overflow: scroll:You should print only the child of the div which have the scroll to get its full content
Just like this : https://codesandbox.io/s/react-to-print-bfybw
Thanks. It works for me
Most helpful comment
Thanks. It works for me