从VF页打印数据表
我的 VF 页面中有两个 apex:datatable 。我需要一个从 VF 页面打印这些表格的选项。 renderasPdf 如何工作?它会打印整个页面还是我们可以只渲染该数据表?或者我们应该在另一个 vf 页面中生成表格并将该页面呈现为 pdf
有指针吗?
谢谢 普拉迪
I have two apex:datatable in my VF page. I need an option of printing these tables from the VF page. How as renderasPdf work? does it print the whole page or can we render only that datatable? Or should we have the table generated in another vf page and render that page as pdf
Any pointers?
Thanks
Prady
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
renderAs=pdf
渲染整个页面。您可以将数据表设为自定义组件,并将其包含在两个不同的 VF 页面中:第一个是纯屏幕页面,另一个是 pdf VF 页面。renderAs=pdf
renders the entire page. You could make your datatable a custom component and include it in two different VF pages: 1 that is your screen-only page, the other that is a pdf VF page.