Re: table-header question

2016-01-21 Thread Chris Bowditch

Hi,

There is no identical extension to RenderX. However, FOP 2.x supports 
table markers, which are more powerful. Simply set the marker in the 
first row to blank, and subsequent rows to the value you want to show in 
the 2nd page onwards. Then retrieve the first marker in each page.


Thanks,

Chris

On 21/01/2016 09:03, Pascal Sancho wrote:

Hi,

AFAIK, there is no such extension with FOP like XEP has (see [1]).
As a workaround, you can remove it in a middle-process, using the
Intermediate Format (see [2]), and re-feed FOP with changed IF.

[1] http://www.renderx.com/reference.html#Omitted_Header
[2] http://xmlgraphics.apache.org/fop/2.1/intermediate.html#usage-if


2016-01-20 15:27 GMT+01:00 bishnu :

Hi,

how to omit the initial header but keeping the subsequent page break
headers with out using renderx in fop.


regards
bishnu


-
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org







-
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org



Re: table-header question

2016-01-21 Thread Pascal Sancho
Hi,

AFAIK, there is no such extension with FOP like XEP has (see [1]).
As a workaround, you can remove it in a middle-process, using the
Intermediate Format (see [2]), and re-feed FOP with changed IF.

[1] http://www.renderx.com/reference.html#Omitted_Header
[2] http://xmlgraphics.apache.org/fop/2.1/intermediate.html#usage-if


2016-01-20 15:27 GMT+01:00 bishnu :
> Hi,
>
> how to omit the initial header but keeping the subsequent page break
> headers with out using renderx in fop.
>
>
> regards
> bishnu
>
>
> -
> To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
> For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org
>



-- 
pascal

-
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org



Re: table-header question

2016-01-20 Thread bishnu
Hi,

how to omit the initial header but keeping the subsequent page break 
headers with out using renderx in fop.


regards
bishnu


-
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org



Re: table-header question

2005-04-05 Thread J.Pietschmann
Julia Reynolds wrote:
I upgraded my fop version to 0.20.5, still no 
love from the fo:table.  Is the code below correct?
Probably not. Having two xsl:apply-templates, the second one for
th/cell, is highly suspect. Furthermore you seem to expect some
th as child of the context node here:
  xsl:for-each select=th[position () =1]/cell
 ^^^
But reporttable/th as child of the same context node here
 xsl:apply-templates select=reporttable/th/
   ^^
You should generate the FO document as a file and examine it whether
you get rows with cells in your fo:table-header.
Furthermore, you probably apply templates twice for the th element,
once within the fo:table-header, and a second time in the fo:table-body
using the catch-all xsl:apply-templates
  fo:table-body
  xsl:apply-templates/
  /fo:table-body

Should I be seeing headers on every page?
What do you mean with this?
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


table-header question

2005-04-04 Thread Julia Reynolds
Hi, I just inherited an fo report recently that converts xml to a pdf.

I'm trying to get the header of my table to display on each page.

I've got this in my xsl:

fo:table table-layout=fixed table-omit-header-at-break=false
xsl:for-each select=th[position () =1]/cell
fo:table-column
column-width=proportional-column-width(1)/
/xsl:for-each
fo:table-header
xsl:apply-templates select=reporttable/th/
xsl:apply-templates select=reporttable/th/cell/
/fo:table-header
fo:table-body
xsl:apply-templates/
/fo:table-body
/fo:table

I wonder if I might have a version problem.  I know that FO 
didn't fully support this table-omit-header-at-break
attribute until a later version.  The jars in my installation have been
renamed without
release notes.  They appear to be dated 3/3/2002.  Any way to get FO to tell
me the version from the command line?

Thanks for your time!

Julia


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