xsl-list
[Top] [All Lists]

Re: [xsl] selecting associated headings based on sequence position

2008-07-30 21:29:07
Hi,

I figured out a solution:

<xsl:template match="Cell">
<xsl:variable name="pos" select="position()"></xsl:variable>
<b><xsl:value-of select="/Worksheet/Table/Row[1]/Cell[position() eq
$pos]/Data"/></b>
<xsl:value-of select="Data"></xsl:value-of><br/>
</xsl:template>

It seemed difficult because I couldn't figure out how to get the
position of the current Cell element
from within the xpath expression... position() allows no arguments and
only works on the current context.

Thanks
Peter

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>