Repeat table content

View: New views
1 Messages — Rating Filter:   Alert me  

Repeat table content

by Alexandre Moraes :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

    I have a table like this:

        <table>
        <thead>
                <row>
             <entry>
                  First Column Title
                  </entry>
              <entry>
                Second Column Title
               </entry>
        </row>
        </thead>
        <tbody>
           <row>
              <entry>
                <para>
                  Item 1
                    </para>
              </entry>
              <entry>
                <para>
                         Item 2
                 </para>
               </entry>
        </row>
        <row>
            <entry>
                <para>
                   Item 3
                 </para>
      </entry>
          <entry>
           <para>
                Item 4
           </para>
        <para>
           Item 5
            </para>
             <para>
           Item 6
        </para>
        <para>
           Item 7
         </para>
        <para>
           Item 8
        </para>
        <para>
           Item 9
        </para>
        <para>
           Item 10
        </para>
        </entry>
          </row>
      </tbody>
   </table>

Each <para> in a different line. Sometimes this table breaks. And what I need to do is, the "Item 1" appears again on next page if page breaks occur in the row.

Thanks,


Alexandre