thanks Chris i will take a look ,,, and something similar....

can i conditionate what i put inside an xsl-region-after to be printed only in last page (if i have more than one) ?

tks !!!!!!!



----- Original Message ----- From: "Chris Bowditch" <[EMAIL PROTECTED]>
To: <fop-users@xmlgraphics.apache.org>
Sent: Wednesday, February 13, 2008 12:34 PM
Subject: Re: Continue page break


cferrero wrote:

Hi,

hello i want to know if is posible this: i have a table wich extends across
two pages (depends data) i want to put after the page footer "continue in
next page" if  table extends to second page, and if not , replace
"continue...." with "total"

You can use fo:marker if the "continued" or "total" needs to appear in page footer. If you need this in table footer then you are out of luck until FOP implements 1.1 table markers.

To use markers, place

<fo:retrieve-marker class-name="table-footer" retrieve-boundary="document" retrieve-position="first-starting-within-page"/>

in the <fo:static-content> for the region-after.

Then place 2 markers in the table. On the first row put

<fo:marker class-name="table-footer">continued</fo:marker>

and on last row of table put

<fo:marker class-name="table-footer">Total</fo:marker>

This is untested but gives the idea of how to achieve what you want.

Regards,

Chris



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




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

Reply via email to