3.2.0

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
April 28,
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
April 28,
How can i print image using javascript?
Marlon
May 13,
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
October 28,

This topic is archived.

See also:


Back to support forum