使用大虾生成pdf时的表格生成问题
**I want to insert a table inside a parent table column.**
e.g :-
<table>
<tr>
<th> Type </th>
<th> Rate </th>
<th> Duration </th>
</tr>
<tr>
<td> Time <br/>
<table>
<tr>
<th> Name</th>
<th> Rate </th>
<th> Duration </th>
</tr>
<tr>
<td> Tom </td>
<td> $100 </td>
<td> 25 </td>
</tr>
<tr>
<td> Tom1 </td>
<td> $200 </td>
<td> 20 </td>
</tr>
<tr>
<td> Tom2 </td>
<td> $300 </td>
<td> 26 </td>
</tr>
</table>
</td>
<td> $1000</td>
<td> 65 </td>
</tr>
</table>
This is in html format . I want to display content in the same format in pdf using prawn.
**I want to insert a table inside a parent table column.**
e.g :-
<table>
<tr>
<th> Type </th>
<th> Rate </th>
<th> Duration </th>
</tr>
<tr>
<td> Time <br/>
<table>
<tr>
<th> Name</th>
<th> Rate </th>
<th> Duration </th>
</tr>
<tr>
<td> Tom </td>
<td> $100 </td>
<td> 25 </td>
</tr>
<tr>
<td> Tom1 </td>
<td> $200 </td>
<td> 20 </td>
</tr>
<tr>
<td> Tom2 </td>
<td> $300 </td>
<td> 26 </td>
</tr>
</table>
</td>
<td> $1000</td>
<td> 65 </td>
</tr>
</table>
This is in html format . I want to display content in the same format in pdf using prawn.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过使用WickedPDF。它是一个 PDF 生成工具,但您编写 HTML 而不是学习新语法等。它还有一个额外的好处,即能够使用 Webkit 语法,因此 html5 始终保持一致
Have you tried using WickedPDF. It's a PDF generation tool, but you write the HTML instead of learning new syntax etc. It also has the added bonus of being able to use Webkit syntax so html5 is consistant throughout
您正在尝试嵌套表格。看看这个问答:大虾PDF:我需要生成嵌套表
You are trying to nest tables. Take a look at this question and answer: prawn PDF: I need to generate nested tables