xsl-list
[Top] [All Lists]

RE: Attributes?

2004-07-01 07:42:52
why dont you use //
the XPATH documentatio states

//para selects all the para descendants of the document root and thus
selects all para elements in the same document as the context node



-----Original Message-----
From: Andrew Curry 
Sent: 01 July 2004 15:28
To: 'xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com'
Subject: RE: [xsl] Attributes?


works for my tv :)

-----Original Message-----
From: Michael Kay [mailto:mhk(_at_)mhk(_dot_)me(_dot_)uk]
Sent: 01 July 2004 15:30
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] Attributes?


try 
<xsl:template match="//GROUP">
  <xsl:if test="./@name">
    Do some stuff.
  </xsl:if>
</xsl:template>

That falls into the category of "if your car won't start, kick the tyres and
try again".

Michael Kay


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