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]

RE: about xsl:when


> 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


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