Hi there
I have a Table nested in a Div that in turn is nested in panel (with scrollbars) in turn nested in a multiview..
The table has the class set as 'print' - that points to a css file via the link
The CSS being quite simple -
and a button with the following code in the Page_Load event
I've tried altering the length of both the Div and the table - there cannot be any 'overflow' and set, in turn, both the div and table class to print - but still it only prints a third of the total - this is probably due to the fact it sits within a panel with a scrollbar
Soooo the question - is there any way (by changing the CSS) to make the whole table visible for printing?
I have a Table nested in a Div that in turn is nested in panel (with scrollbars) in turn nested in a multiview..
The table has the class set as 'print' - that points to a css file via the link
Code:
<link href="../../../../Styles/Print.css" rel="stylesheet" type="text/css" media="print" />
Code:
body
{
visibility:hidden;
}
.print
{
visibility:visible;
overflow:visible;
}
and a button with the following code in the Page_Load event
Code:
If not page.IsPostBack then
PrintBalanceSheet.Attributes("onClick") = "javascript:window.print();"
Soooo the question - is there any way (by changing the CSS) to make the whole table visible for printing?
Comment