|
From: Sergio A. K. <ser...@ho...> - 2002-02-19 23:33:17
|
actually, you can use the print button of your browser,
but you don't want the form's buttons to print right ?
the easy solution for this is to use css to define a
non printable class, like this:
@media print {
.noprint { /* items with this class won't print */
display: none;
}
}
then you modify the source to include
<div class=noprint>
..... <form's buttons> .....
</div>
hey, you even can define things that don't
display on screen but print
@media screen {
.noscreen { /* items with this class won't display */
display: none;
}
}
it would be good for sql-ledger to use more css...
/sergio
----- Original Message -----
From: "Jeff Strope" <js...@en...>
> I'm pretty sure this has been covered in the past, but I just want to make
> sure.
>
> The "Print Invoice" & "Print Order" (etc) form buttons do not actually
send
> documents to printers installed on the server, correct?
|