This is a discussion on "IE Print issue" within the Web Page Design section. This forum, and the thread "IE Print issue are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
IE Print issue
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
||||
|
IE Print issue
I have bingo cards being generated based on the number of employees in a database. This all works, the problem lies in the printing. The float I think is causing IE to not see the rest of the pages. No work around as of yet.
For the print style sheet I have
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Last edited by moojoo; Sep 27th, 2006 at 14:06. |
|
|
|
||||
|
Re: IE Print issue
Are you placing 'clear' divs around or at least after the last card?
|
|
||||
|
Re: IE Print issue
Well that is the problem. It generates based on the entries in a MSSQL table. 268 as of current. So I need to know how to check the loop or something and place a page break after every 6th table. I figured the float in the print css is choking it.
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
|
|
||||
|
Re: IE Print issue
Are you doing this with PHP?
|
|
||||
|
Re: IE Print issue
Unfortunately no. I wish I could use PHP/MySQL but I am stuck doing it with a MSSQL DB, and a mix of HTML, Javascript and VBScript. The output is handled with javascript. Like I said if I remove the table {} fromt he print style sheet it outputs everything but I need the tables to line up 6 per page thus IE I guess is getting confused and stopping after page one. I did a bunch of research and IE has plenty of known print issues like this anyway. So I need to find a way to force the page breaks.
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
|
|
||||
|
Re: IE Print issue
I have to do the same on some reports I print from my website.
<% Dim i : i = 0 Do While (condition) i = i + 1 If (i mod 6)=0 Then ' add page break End If ' do the loop thing ' iterate and all that... Loop %> The othe option is to use height:20% or whatever...
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
|
|
||||
|
Re: IE Print issue
Awesome, I need to search for a js method though but this puts me on the right track.
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
|
|
||||
|
Re: IE Print issue
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
|
|
||||
|
Re: IE Print issue
I would post do the PHP version too but I don't wanna show off...
(and I'm not sure how to do it, lol)
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
|
|
||||
|
Re: IE Print issue
haha no PHP here, this runs locally on our network etc.. I am stuck with the MS stuff.
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
|
|
|||
|
Re: IE Print issue
Not that anyone asked, but I think this would work for php, with row class defined as clear: both and cell class defined as float: left
|
![]() |
| Tags |
| print, issue |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Print Without Prompt | chrisgeast | JavaScript Forum | 2 | Sep 7th, 2007 10:34 |
| print from my website | dber | Web Page Design | 7 | Jun 24th, 2006 22:54 |
| css - print and screen? | cyberpac9 | Web Page Design | 0 | Jan 3rd, 2006 20:45 |
| ClaireB | JavaScript Forum | 2 | Sep 9th, 2005 18:52 | |
| Echo vs Print | Sqrlgrl | PHP Forum | 3 | May 30th, 2005 22:31 |