FOP 0.95: table-layout="fixed" and column-width unspecified
Posted: Tue Oct 21, 2008 4:58 pm
Hello!
I received following warning from Apache FOP 0.95. It is strange for me, because I have defined column-width. Could You help me, please? My FO file is below.
Thank You in advance. Stepan
I received following warning from Apache FOP 0.95. It is strange for me, because I have defined column-width. Could You help me, please? My FO file is below.
Thank You in advance. Stepan
Code: Select all
L:\RunFiles\fop-0.95>fop -fo name0201.xml -pdf name01.pdf
21.10.2008 16:20:29 org.apache.fop.fo.flow.table.TableColumn bind
WARNING: table-layout="fixed" and column-width unspecified => falling back to pr
oportional-column-width(1)
21.10.2008 16:20:29 org.apache.fop.fo.flow.table.TableColumn bind
WARNING: table-layout="fixed" and column-width unspecified => falling back to pr
oportional-column-width(1)
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master margin="2cm" page-width="21.0cm" page-height="29.7cm" master-name="A4-portrait">
<fo:region-body />
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence initial-page-number="1" master-reference="A4-portrait" id="1">
<fo:flow flow-name="xsl-region-body">
<fo:table width="150mm" table-layout="fixed">
<fo:table-column width="50mm" />
<fo:table-column width="100mm" />
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block>a1</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>b1</fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row>
<fo:table-cell>
<fo:block>a2</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>b2</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:flow>
</fo:page-sequence>
</fo:root>