xsl-list
[Top] [All Lists]

Re: error in accessing sibling NodeList

2005-01-20 12:47:10
Tempore 20:24:46, die 01/20/2005 AD, hinc in xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com scripsit Rahil Qamar Yahoo <qamar_rahil(_at_)yahoo(_dot_)co(_dot_)uk>:

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="//*[(_at_)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[(_at_)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)

--~------------------------------------------------------------------
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>