Whenever I try to open the print Dialogue on a specific page, all I'm seeing is a blank screen. The majority of the content on this page consists of AngularJS elements. To trigger the print dialogue, I use the following code:
<a href=""onclick="window.print(); return false;"> Print </a>
The only visible element on the page is the print button itself. None of the tables that are supposed to be generated using ng-repeat
are showing up at all. Is this issue related to AngularJS? If so, what steps can I take to resolve it?