Anshuman wrote:
>     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]

Reply via email to