philip(_dot_)vallone(_at_)verizon(_dot_)net wrote:
Hi Max,
It looks like you are only declaring one column
<fo:table-column column-width="proportional-column-width(1)"/>
but have two. Is this correct?
Phil
From: Max <max(_at_)legatio(_dot_)com>
Date: 2008/07/16 Wed AM 08:06:20 CDT
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] xslfo table paging
Hey there, I'm new to this list. *waves*
I'm trying to convert some XML into PDF via XSL:FO and XSLT. I have a
(mostly) working XML schema and XSLT however I need to split some data
into two columns over several pages and I can't get the data in the
table to fill the left column on page one then the right column on
page one and continued for pages two and three.
I'm using the PHP (5.5.2) for the transforms and apache fop 0.95beta
for the fo to PDF.
Regards Max
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--
Kinda, thats the xslt so it uses 100% of the width of the available doc
and then divides it into the number of columns given. So the xml look
likes this
<table border='1'>
<tbody>
<tr>
<td>One</td>
<td>Two</td>
</tr>
<tr>
<td>Three</td>
<td>Four</td>
</tr>
</tbody>
</table>
Max
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--