This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: finding attributes values


Hello Carlos,

it's dependent on the context.

If you use your code in a template

<xsl:template match="/">
  <xsl:if test="root/item[@id = '2']">
     ...
  </xsl:if>
</xsl:template>

it should work.

Regards,

Joerg

Carlos Durand wrote:
Hi people,

for example:

<root>
   <item id="1"/>
   <item id="2"/>
   <item id="3"/>
   <item id="4"/>
</root>

how can I know if exists an id with specific value

I'm trying this...

<xsl:if test="root/item[@id = '2']">
   ...
</xsl:if>

thanks

Durand

--

System Development
VIRBUS AG
Fon  +49(0)341-979-7419
Fax  +49(0)341-979-7409
joerg.heinicke@virbus.de
www.virbus.de


XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]