|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: selecting associated headings based on sequence p
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
|
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
|






