Link to home
Start Free TrialLog in
Avatar of bogorman
bogorman

asked on

Print page after updating data

I have a record page bound to a mySQL table. It has a save button on it.
I want to be able to change the button to a "save and print" button and print the page without the graphics and tbe buttons. I thought I would construct another page without the graphics and buttons and print that but the problem is updating the data on the second page.
Is there any way of calling up the second page and passing it the id of the record just saved on the first one and then printing it, this all being done without the user seeing the process?

Regards
Brian
Avatar of radnor
radnor
Flag of United States of America image

I have for a client of mine, 2 css files.  One used for display and the other printing.  

<link href="xxxx.css" rel="stylesheet" type="text/css" media="screen" />
<link href="xxxxp.css" rel="stylesheet" type="text/css" media="print" />

Items I do NOT wanted printed have this:

#leftcontent {
      display:none;
}

On this site, leftcontent describes my nav menu.  So when the page is printed, the menu is NOT included.

Hope this helps.
Not sure if you can include on the last line of your script this:
window.print();  to print the page when done.
Avatar of bogorman
bogorman

ASKER

hi radnor,
Thanks very much. I am quite new to CSS/Web Design.
I assume that the first stylesheet would only be applied to the page when it is displayed, the second only when the page is printed.
The two areas of my page which I do not want to be printed are the section with the class Header (which has the graphic heading) and the bottom area which has class Bottom)
So if I give each an id="noprint" and put in the "printing" stylesheet

#noprint{
display:none
}

together with all the other styles from my "display" stylesheet, it should work. Have not tried it yet - just wanted to make sure I've got it right!
Regards
Brian

Hi radnor,
Just another point. I suppose that the two stylesheets can be identical apart from the addition of the noprint style to the printing one?
Regards
Brian
SOLUTION
Avatar of radnor
radnor
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Michel Plungjan
And radnor's suggestion of window.print you can do with
<body onLoad="window.print()">
Hi,
Yes, I see. I suppose I could have the record page with a save and print button which saves the record and then opens a "print" page with no graphics on it, passing the record id to it as a parameter. This would print automatically, but how can I close the page automatically and return to the original one?
Regards
Brian
You cannot reliably print and close. wmv can open a new window, print it and have a close link or button
Hi,
I suppose, then, it might be best to adopt radnor's idea with the two stylesheets, one for display and one for printing and keep to one page.
The only problem then would be "converting" listboxes to textboxes for printing, otherwise they would look wrong.
Perhaps I could have two controls to hold the data when I use a listbox, one the listbox and the other a  textbox with an id which hides it in display mode. If I do this and use the ifchange event to copy the data over from the listbox to the textbox, would it accept the data if its id hides it in display mode?
Regards
Brian
yes.
<input name="printfield1" class="print" value="">
<select onChange="this.form.printfield1.value=this.options[this.selectedIndex].value" class="noPrint">
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi radnor and mplungjan,
Thanks VERY MUCH for your excellent advice. You have both helped me so much and I have solved the problem with your advice.
Will split the points.
Regards
Brian