Hi !,
Thanx for the
useful tip. I am able to break the long table body into pages. But this led to
another problem. I am using
<
fo:static-content flow-name="xsl-region-after"/> to put the footer in the page. But when the table breaks into more than one page, it overlaps the area of footer and breaks only at the very end of the page. How can I make the table break before the footer of the page ?with regards,
ASM
----- Original Message -----
From: "J.Pietschmann" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, March 27, 2002
2:12 PM
Subject: Re: How to keep space
between two region/block/ ... while rendering ?
> > Can any one tell me how can I keep space between two <fo:flow> tag
> > or between two <fo:block> tag ?
> > My problem is that I have a <fo:static-content> tag where I keep the
> > table header information and <fo:flow> where I keep the body. But when
> > the data in the header tags is more, it overlaps the body and hence I
> > loose the first 1-2 records of the table body.
>
> It seems you approached the described problem from
> a somewhat unusual direction.
>
> You can arrange for header rows placed after every page
> break this way:
> <fo:table table-omit-header-at-break="false">
> ...
> <fo:table-header>
> <fo:table-row>
> ...
> </fo:table-row>
> </fo:table-header>
> <fo:table-body>
> ...
>
> If you really have to use static content for the header,
> you should define your layout in a way that the areas don't
> overlap, for example:
> <fo:region-body margin-top="3cm"/>
> <fo:region-before extent="3cm"/>
>
> J.Pietschmann
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
>