Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing an XSL stylesheet for XSL-FO transfomration to create a PDF, with tables, using Apache FOP library. I have succeeded in getting PDF document with data. But having some issues with the layout. The following lines are getting printed to my Netbeans IDE console, while creating PDF.

[ERROR] At least one of minimum, optimum, or maximum IPD must be specified on table.
[INFO] area contents overflows area in line

My table cell contents are getting overlapped due to this. I want to know what IPD is and how to set it. I am a beginner in using XSL-FO and so any help is highly appreciated.

share|improve this question
1  
IPD is short for "inline progression dimension". This seems to be a problem with missing width specifications on fo:table or fo:table-column. What version of FOP are you using? – mzjn May 9 '11 at 15:53
Now I have defined column-width for all columns and the issue is solved. I still have value overlapping problem, in date column, because time also gets displayed along with date. I can handle this by formating date. FOP version used is 0.20.5. Thanks – WarFox May 10 '11 at 5:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.