Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to repeat the table header when it spans more then one page, or even detect the page break so I can add the header myself, I'm using Docx4j library.

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to add to the relevant table row (w:tr):

<w:trPr>
  <w:tblHeader />
</w:trPr>

For how to do this, please see http://www.docx4java.org/forums/docx-java-f6/insert-a-tableheader-t237.html

For more on the element (from ISO/IEC 29500-1 1st Edition), you can see http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.tableheader.aspx

share|improve this answer
Thanks a lot Jason, okay I have done as you wrote on www.docx4java.org, and added String strTrPr = "<w:trPr xmlns:w=\"schemas.openxmlformats.org/wordprocessingml/2006/main\">" + "<w:tblHeader />" + "</w:trPr>"; then tr.setTrPr((TrPr)XmlUtils.unmarshalString(strTrPr)); before TrPr trPr = tr.getTrPr(); but I'm getting an exception javax.xml.bind.UnmarshalException: unexpected element (uri:"schemas.openxmlformats.org/wordprocessingml/2006/main";, local:"trPr"), so what do you think ? – Samaa El-Komy Jan 31 at 14:14
Try ((TrPr)XmlUtils.unmarshalString(strTrPr, Context.jc, TrPr.class)) or use the approach in the link given above. – JasonPlutext Feb 1 at 10:03
Really, Thank you sooo much Jason for the library and the support, it worked :D, yes I was trying to use the same approach that you wrote on docx4java but when I call tr.getTrPr() without setting it, I was getting null pointer exception. – Samaa El-Komy Feb 3 at 7:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.