I have this in my xsl file:

        <xsl:for-each select="./OFFER_BUNDLES">
                  <fo:block break-before="page">
      .....

 I guess this is breaking the loop.

 Also, How can i name column names in a table?


-----Original Message-----
From: Oleg Tkachenko [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 20, 2003 11:39 AM
To: [EMAIL PROTECTED]
Subject: Re: empty pdf file


Rabih Yassine wrote:
> Ok. Thanks it works now.
> I have another question now.
> If i have a list in the xml file. For example a list of bundles. And every
> bundle should be in a new page.
> How can i do that? They should be created dynamically.

<xsl:template match="bundle">
        <fo:block break-before="page">
                ...
        </fo:block>
</xsl:template>
This will force page break before each of these fo:block objects.
Alternatively use break-after="page".
--
Oleg Tkachenko
Multiconn Technologies, Israel


---------------------------------------------------------------------
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