Hi,
I have a window with horizontal scrollbar (no vertical scrollbar). When I do:
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
};
It simply chops off the content on the right end and prints only what fits in one page. I would like to print the entire content page-by-page on 'landscape'.
I tried this: And I set the page setup to Landscape manually.
body {
width:100%;
writing-mode : tb-rl;
margin : 5% 0%;
direction: ltr;
unicode-bidi: bidi-override;
}
It sis printing the entire content that is fitting in the landscape version of the page, and then chopping off the rest of the content. I thought it would push the rest of the content to the next page. Bit it isnt doing that.
Can anyone help?
Thanks.
I have a window with horizontal scrollbar (no vertical scrollbar). When I do:
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
};
It simply chops off the content on the right end and prints only what fits in one page. I would like to print the entire content page-by-page on 'landscape'.
I tried this: And I set the page setup to Landscape manually.
body {
width:100%;
writing-mode : tb-rl;
margin : 5% 0%;
direction: ltr;
unicode-bidi: bidi-override;
}
It sis printing the entire content that is fitting in the landscape version of the page, and then chopping off the rest of the content. I thought it would push the rest of the content to the next page. Bit it isnt doing that.
Can anyone help?
Thanks.