使用 GWT 打印屏幕
我想打印 GWT 生成的 html 页面。我正在使用 Window.print()。
但是,当调用打印时,仅打印一页。
有没有办法打印所有页面?
I want to print a html page generated by GWT. I am using Window.print().
But when print is invoked only one page is printed.
Is there a way to print all pages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们能够通过创建新窗口并向其中添加当前页面的内部 html 然后在其上执行打印来打印完整页面。
谷歌代码共享提供相同功能的类。
http://code.google.com/p/gwt-print-it/
We were able to print complete page by creating new window and adding inner html of current page to it and then executing print on it.
A class which provides the same functionality is shared at google code.
http://code.google.com/p/gwt-print-it/
您确定这是 GWT 的问题吗?问题可能出在浏览器或打印机的配置中。尝试检查此选项。
Are you sure that this is a GWT's problem? The problem maybe is in browser or in printer's configuration. Try to check this options.