Play Framework 中 PDF 模块中的表标题

发布于 2025-01-08 03:33:59 字数 927 浏览 1 评论 0原文

我正在使用 Play 框架。我可以使用 PDF 模块生成 PDF。我的问题是我想在每个页面中添加表格标题。这是我在此处看到的代码

<table width="100%" border="1" id="example" cellspacing="0" cellpadding="0" style="border-collapse: collapse" class="-fs-table-paginate: paginate;">
                <thead>
                    <tr>
                        <th align="center"><b>Items</b></th>
                        <th align="center"><b>Quantity</b></th>
                        <th align="center"><b>Unit Price</b></th>
                        <th align="center"><b>Amount(Rs).</b></th>
                    </tr>
                </thead>
.....
</table>

。我添加了-fs-table-paginate:分页;在类属性中。但表头在下一页中不再继续。 我不知道如何使用这个。你能帮我吗?

编辑:请问谁能帮我......

I'm using play framework. I am able to generate the PDF using PDF module. My Problem here is i want to add the table headers in every page. Here is my code

<table width="100%" border="1" id="example" cellspacing="0" cellpadding="0" style="border-collapse: collapse" class="-fs-table-paginate: paginate;">
                <thead>
                    <tr>
                        <th align="center"><b>Items</b></th>
                        <th align="center"><b>Quantity</b></th>
                        <th align="center"><b>Unit Price</b></th>
                        <th align="center"><b>Amount(Rs).</b></th>
                    </tr>
                </thead>
.....
</table>

I saw here. i added -fs-table-paginate: paginate; in the class attibute. But the table headers are not continued in the next page.
I don't know how to use this. Can you help me Pl.

EDIT: can anyont help me please....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只为一人 2025-01-15 03:33:59

您应该添加“-fs-table-paginate:分页;”到样式属性,而不是类属性:

<table width="100%" border="1" id="example" cellspacing="0" cellpadding="0" style="border-collapse: collapse; -fs-table-paginate: paginate;">

You should add "-fs-table-paginate: paginate;" to the style attribute, not to the class attribute:

<table width="100%" border="1" id="example" cellspacing="0" cellpadding="0" style="border-collapse: collapse; -fs-table-paginate: paginate;">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文