Rank: Newbie Groups: Member
Joined: 4/29/2016 Posts: 5
|
Hello, We have subscription for HTML to PDF product (The Order number is CP9X140A8???). Now I have a question regarding tfoot repeating feature among multiple pages. I have a such table: <table> <thead></thead> <tfoot></tfoot> <tbody></tbody> </table> the content of tbody crosses multiple pages. I want to keep thead show up on each page but want to see tfoot show up only at the bottom of table, which is at the end of all pages. So far the content of tfoot shows up on every page just below the end of tbody content for that page. I found similar request in your forum: https://www.essentialobjects.com/forum/postst6543_Disable-Repeating-Table-Header-and-Footer.aspxDo you have new release to support this feature or is there any workaround that I can use to get it done in our current version? Thanks, Jerry
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,221
|
Hi,
You won't be able to do that with tfoot. If you do not want the item to be repeated, you must use a regular table row instead of tfoot. So instead of using tfoot, you can add an additional row to tbody and put the contents of tfoot into the last row in tbody. You may also need to adjust your CSS so that the last row does appear visually different.
Thanks!
|