xsl-list
[Top] [All Lists]

RE: Output the Value of Element without its Child Elements

2005-07-18 07:35:12
The node test solved my problem. Thank you! 

-----Original Message-----

I suspect you meant id="2" to be ID="2" in your example.

Is this what you want?

<xsl:template match="TOPIC">
  <xsl:value-of select="@ID"/><br/>
  <xsl:value-of select="node()[not(self::TOPIC)]"/>
  <xsl:apply-templates select="./TOPIC"/> </xsl:template>

--
Stuart Jansen <sjansen(_at_)gurulabs(_dot_)com>
Guru Labs, L.C.


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


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