Subject: RE: about xsl:when
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Thu, 8 Mar 2001 16:50:02 -0000
|
> I try that display the names that have the 'id=1' and 'id=2'
> in the resutl,
> but doesen't work. In the XML file, each 'persona' node have
> a 'id' with
> numeric value. This is the xsl code:
>
> <xsl:template match = "persona[@id]" >
> <xsl:choose >
> <xsl:when test = ".='1'" > <br/>
You current node is the persona element, not the @id attribute.
Try <xsl:when test="@id='1'">
Mike Kay
Software AG
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- about xsl:when
- dago - Thu, 8 Mar 2001 11:19:16 -0500 (EST)
- Michael Kay - Thu, 8 Mar 2001 11:47:51 -0500 (EST) <=
- David Carlisle - Thu, 8 Mar 2001 11:54:53 -0500 (EST)
|
|