I have been going through and trying to clean up warnings in my log files.
I was getting numerous (for example):

1062605170037 -> WARN   [fop]:Sum of fixed column widths 685974 greater
than maximum specified IPD 23464

I saw the posting by J.Pietschmann about making sure you define a width for
the table by using either:

<fo:table width="100%" ...
or
<fo:table width="10cm" ...

Setting it to an exact value seems to do the trick, but when I try to use a
width of 100% in the following example code:

<fo:table table-layout="fixed" width="100%">
<!--centerwidth computed here-->
<snip/>
<fo:table-column column-width="50mm"/>
<fo:table-column column-width="{$centerwidth}"/>
<fo:table-column column-width="50mm"/>

I get the following log warning:
1062605170037 -> WARN   [fop]:Sum of fixed column widths 685974 greater
than maximum specified IPD 0

It looks like 100% is getting an IPD of 0?

I worked around it by doing:
<fo:table table-layout="fixed" inline-progression-dimension="100%">

This seems to be working.  Am I not using this correctly?

FOP 0.20.3
jdk 1.3

Thanks,
Lou



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to