Hello, keep-with-next seems working however. keep-with-next caries all subsequent rows to the previous page. It is not what I want I want keep-with-previous property which caries the row to be broken in to the next row completely without breaking. Althoough keep-with-next works, keep-with-previous or keep-to-gether does not work.
Kind regards. On Mon, Feb 25, 2008 at 6:04 PM, Vincent Hennebert < [EMAIL PROTECTED]> wrote: > 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://people.apache.org/%7Evhennebert> > http://www.anyware-tech.com > Apache FOP Committer FOP Development/Consulting > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Nedim Buke
