Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xsl] Detecting table columns with XSL-FO

From: "andrew welch" <andrew.j.welch@--------->
To:
Date: 8/2/2006 8:57:00 AM
On 8/2/06, Miranda Wageman <mwageman@xxxxxxxxxxx> wrote:
Hi,



I have searched long for this but cannot seem to get a straight answer.



We are trying to output tables in XSL-FO, but I do not seem to be able to
easily find the table row with the maximum number of cells within a table,
so that I can specify how many <fo:table-column/> items should be added.
Cells that span columns or rows have colspan and rowspan attributes in their
tags.

Is there any way to loop through the rows within a table to find the row
with the maximum number of cells? The looping methods I have found seem to
only deal with a set number of reiterations whereas with our tables we don't
know which row has the most cells.

Thank you very much for any pointers in the right direction - right now I
don't even know where to start anymore.

If you are generating your XSL-FO using XSLT 1.0 then the usual way is
to select all <tr>'s and sort them by the count of their <td>'s, and
then pick the first:

http://www.dpawson.co.uk/xsl/sect2/N7450.html#d9845e601



If you are using XSLT 2.0 then you can use the max() function, eg:



<xsl:variable name="maxCells" select="max(//tr/count(td))"/>



cheers
andrew


transparent
Print
Mail
Digg
delicious
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent