使用praw生成pdf的表生成问题

时间:2011-09-14 07:12:18

标签: ruby-on-rails pdf 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.

2 个答案:

答案 0 :(得分:0)

您是否尝试过使用WickedPDF。它是一个PDF生成工具,但你编写HTML而不是学习新语法等。它还有一个额外的好处,就是能够使用Webkit语法,所以html5始终是一致的

答案 1 :(得分:0)

您正在尝试嵌套表格。看看这个问题并回答:prawn PDF: I need to generate nested tables