I said the XSL-FO file... You can obtain it with the following command:
    fop -xml source.xml -xsl stylesheet.xsl -foout out.fo

Anyway, after having seen the PDF result it’s clearer. Set 
keep-together="always" on every fo:table-row belonging to the span; plus 
set keep-with-next="always" on every table-row of the span but the last 
one. No need to set keep-together on the children blocks.
Example:
    <fo:table-row keep-together="always" keep-with-next="always">
      <fo:table-cell number-rows-spanned="3">
        <fo:block>Row-spanning cell</fo:block>
      </fo:table-cell>
      <fo:table-cell>
        <fo:block>Cell on row 1</fo:block>
      </fo:table-cell>
    </fo:table-row>
    <fo:table-row keep-together="always" keep-with-next="always">
      <fo:table-cell>
        <fo:block>Cell on row 2</fo:block>
      </fo:table-cell>
    </fo:table-row>
    <fo:table-row keep-together="always">
      <fo:table-cell>
        <fo:block>Cell on row 3</fo:block>
      </fo:table-cell>
    </fo:table-row>

HTH,
Vincent


Nedim Buke wrote:
> Hello,
> 
> The pdf is the output of the fop. The page 19 contains the table where the
> row is broken.
> 
> On Mon, Feb 25, 2008 at 5:24 PM, Nedim Buke <[EMAIL PROTECTED]> wrote:
<snip/>


-- 
Vincent Hennebert                            Anyware Technologies
http://people.apache.org/~vhennebert         http://www.anyware-tech.com
Apache FOP Committer                         FOP Development/Consulting

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

Reply via email to