Re: [xsl] error in accessing sibling NodeList

Subject: Re: [xsl] error in accessing sibling NodeList
From: "Joris Gillis" <roac@xxxxxxxxxx>
Date: Thu, 20 Jan 2005 20:47:10 +0100
Tempore 20:24:46, die 01/20/2005 AD, hinc in xsl-list@xxxxxxxxxxxxxxxxxxxxxx scripsit Rahil Qamar Yahoo <qamar_rahil@xxxxxxxxxxx>:

I have another query. I am trying to create a generic <xsl:template> which will loop through the entire XML file looking for the word 'ELEMENT' in the attribute rm_class. A portion of the XML file is
Hi,

Maybe you could use this instead of diving down the tree with templates:

<xsl:for-each select="//*[@rm_class='ELEMENT']">
         <xsl:message>Done</xsl:message>
</xsl:for-each>


The reason the for-each is not working is maybe that you forget the brackets:
<xsl:for-each select="following::node[@rm_class='ELEMENT']">
<xsl:message>Done</xsl:message>
</xsl:for-each>


regards,
--
Joris Gillis (http://www.ticalc.org/cgi-bin/acct-view.cgi?userid=38041)
Spread the wiki (http://www.wikipedia.org)

Current Thread