:: Forum >>

Print and paging

I have many records in my grid, the paging has solved the problems, but what I can do for print all the records ?

Is there any method to switch among paging and not paging ?
Mike
Thursday, April 28, 2005
I recomment to provide a different view for printing. I use normal formatted HTML table tags and special CSS files for print media. In addition of course I provide a printable link.
Andreas
Thursday, April 28, 2005
How can i print image using javascript?
Marlon
Friday, May 13, 2005
The JavaScript is triggered by using the command "javascript:" in place of a URL, thus allowing a hypertext link to fire off the JavaScript.

And before you ask, yep, this will work with almost any JavaScript Event Handler as long as the format allows you to write it as a specific line or trigger a function.

You can set it to print off of an image:

<A HREF="javascript:window.print()">
<IMG SRC="print_image.gif" BORDER="0"</A>

You can set it to trigger off a button:

<FORM>
<INPUT TYPE="button" onClick="window.print()">
</FORM>
Saurabh Shrivastava,india
Friday, October 28, 2005

This topic is archived.


Back to support forum

Forum search