This is how it looks my HTML:
In order to print the page I am using in JavaScript the window.print()
function.
$scope.print= function() {
$("#tab2-panel-tools").hide();
$("#title-row").hide();
window.print();
$("#tab2-panel-tools").show();
$("#title-row").show();
}
In the next image is my print preview. In the print preview the table exceed the width of the page. How can I fit the table in the page?