|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Finding the maximum number of nodes (Redux)
> <xsl:attribute name="colspan"><xsl:value-of select="count(tr[count(td)
>
> count(following-sibling::tr[count(td) >
> count(preceding-sibling::tr[last()]/td)]/td)][count(td) >
> count(preceding-sibling::tr[last()]/td)]/td)"/></xsl:attribute>
This would be unacceptable for me - who should understand that later?
Why not something like that:
<xsl:template match="table">
<xsl:variable name="cols">
<xsl:for-each select="tr">
<xsl:sort select="count(td)"/>
<xsl:if test="position()=last()">
<xsl:value-of select="count(td)"/>
</xsl:if>
</xsl:for-each>
</xsl:variable>
<table border="1">
<tr>
<td colspan="{$cols}">Table Header Text</td>
</tr>
<xsl:copy-of select="tr"/>
</table>
</xsl:template>
Joerg
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








