Hello!
Anybody know how to get the PDF exporter to repeat the table headers when a table breaks across a page?
Also i have a problem with alignment of columns in width.
How to fix it in stylesheet?
Hi Vadim,
I did just reproduce your problem using the Scroll PDF Exporter described above (https://marketplace.atlassian.com/plugins/com.k15t.scroll.scroll-pdf) and inserted the CSS code in the Scroll PDF Exporter Content Formatting section. The table header was repeated on every break across a page.
Using the internal PDF exporter from Confluence, the repeating of the header doesn't work.
Did you use the Scroll PDF Export, or the Confluence PDF export function?
Maybe you should take a look in the Scroll PDF Exporter documentation (http://www.k15t.com/display/PDF/Documentation) to check the possibilities of this Add-On.
Cheers,
Nils
What product are you referring too?
Atlassian Confluence 4.2.8
I expect you're using the standard Confluence export to PDF feature, but even so, you might try this tweak offered for the Scroll PDF Exporter plugin (http://www.k15t.com/pages/viewpage.action?pageId=11078043):
div.tablewrap table.confluenceTable { -fs-table-paginate: paginate; border-collapse: separate; border: 1px solid #DDDDDD; }
This should go in the CSS for PDF Export.
The "-fs-table-paginate" part relates to Flying Saucer, which is a XHTML renderer and used by Confluence to create the PDF output. I think the Scroll PDF Exporer also uses it, so there's a good chance this will work for you.
Unfortunately, it did not help
other solutions?
I am having the same problem. I tried the tweak with "-fs-table-paginate: paginate;" as described above and the normal CSS solution with
table thead { display: table-header-group; }
But it didn't work.
Also, I am wondering if the confluence 4.x table code is the problem. When I include a standard table from the menu it creates a table with the following html code:
<table class="confluenceTable"> <tbody> <tr> <th class="confluenceTh">...</th> <th>...
Wouldn't it have to be <thead> instead of <tbody> and couldn't this be one more reason why it doesn't work?
Or did someone achieve repeating headers with confluence 4.x?
Thanks, Steffen
Hi Steffen,
concerning your problem with the repeating header, did you try it with the standard PDF Export in Confluence or with the Scroll PDF Exporter?
Cheers, Nils
Hi,
you may try this workaround adapted to the internal PDF exporter:
table.confluenceTable { border-collapse: separate; -fs-table-paginate: paginate; border-spacing: 0px; }
We've also documented this here: https://k15t.jira.com/browse/PDF-333
The workaround there works with the Scroll PDF Exporter, so the adapted version should work for the internal one as well.
Cheers,Jens
@Jens:
Did you mean that you have a solution for repeated headers that also works for confluence and not only for the Scroll PDF Exporter? That is how I understand your post.
But I just tried all the solutions presented here and nothing worked:
CharlesH solution:
Your workaround:
The solution copied from https://k15t.jira.com/browse/PDF-333
table { -fs-table-paginate: paginate; } div.tablewrap table { border-collapse: separate; -fs-table-paginate: paginate; border-spacing: 0px; }
Did you get it to work with one these solutions?
I have not tried the workaround with the internal PDF Exporter, but since it also uses flying-saucer I'm pretty confident that it will work given that the CSS classes from the selectors match the HTML.
In our Scroll PDF Exporter the HTML looks a bit different, so the selector from our workaound might not match when you apply this CSS to the built-in PDF exporter's stylesheet without adaption.
Also make sure that there is no other CSS conflicting with the workaround.
Btw. this part is not required:
table { -fs-table-paginate: paginate; }
I have not been able to get the internal Export to PDF to repeat headers, in any browser with any custom CSS (as of Confluence 5.2.3). And I am sure the Scroll PDF works but we do not own that plugin at this time.
However, Confluence does output the "thead" element, which browsers should respect when printing normally (there is a 6 yr old WebKit bug #17205 that prevents Chrome from working). So in Firefox or IE, if I click Print Preview, it repeats the table headers and then I can Print to PDF and that works.
I've officially found the first reason to not use Chrome for everything.
Like Steffen Heller said a year ago, none of the suggested solutions work for the internal PDF Exporter in Confluence. I just tried them all in Confluence 5.4, and nothing happens. No repeating table headers.
Has anyone been able to find something that works?
See my discussion https://community.atlassian.com/t5/Confluence-discussions/PDF-Export-Confluence-does-not-support-CSS-3-only-2-1/td-p/1202508
It looks like you're new here. Sign in or register to get started.