Entry
How can I print all rows (up to the end) of a scrollable table even w/ rows not displayed on screen.
How to print the content of a scrollable table (IE5.5)?
Sep 30th, 2003 05:14
vijay vijay, Kady Ny,
I use media=print and media=screen. In my print.css, I have
.tbl {
visibility: visible ;
}
but it still doesn't print all the rows of the table for me. It just
prints what are visible to the screen (the first 20 rows).
My idea...
--------
for IE you can also use :
onBeforePrint event and make the table style, usually overflow:scroll
to overflow:none and set the height property to default.