Re: How to keep the table`s columns description on the next page?

2004-06-23 Thread Milen Dimitrov
Chris Bowditch wrote:
Milen Dimitrov wrote:
   Hi,
can somebody help me with this issue:
I have a very long tables that spreads on more than 1 page, and I 
want to have the columns titles on every page. I cannot put the 
columns titles in fo:region-before because the tables are different.
10x

This is straight forward. You just need to define a header row. This 
is done as follows:

fo:table
fo:table-column column-number=1 width=2cm/
fo:table-column column-number=2 width=2cm/
fo:table-column column-number=3 width=2cm/
fo:table-header
fo:table-row
fo:table-cellHeading 1/fo:table-cell
fo:table-cellHeading 2/fo:table-cell
fo:table-cellHeading 3/fo:table-cell
/fo:table-row
/fo:table-header
fo:table-body
..
/fo:table-body
/fo:table
Chris

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

Thanks this solved the problem :)
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: How to keep the table`s columns description on the next page?

2004-06-22 Thread Clay Leeds
On Jun 22, 2004, at 4:36 AM, Milen Dimitrov wrote:
   Hi,
can somebody help me with this issue:
I have a very long tables that spreads on more than 1 page, and I want 
to have the columns titles on every page. I cannot put the columns 
titles in fo:region-before because the tables are different.
Have you tried using the fo:table-header? I believe the purpose of this 
element (and similarly fo:table-footer) is to print the information on 
every page.

Hope this helps!
Web Maestro Clay
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]