RE: [xsl] If nodeset does NOT include

Subject: RE: [xsl] If nodeset does NOT include
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Fri, 30 Aug 2002 23:04:58 +0100
> > I want to call a template only if a nodeset does
> > not contain a match for a variable, ie:
> > 
> > <xsl:if test="(.//InqInfo/Member_Id != $listfor)">
> > 			  <xsl:call-template
> > name="Recipbutton">
> > 

This means "if .//InqInfo/Member_Id contains a node that is not equal to
$listfor".

You want

<xsl:if test="not(.//InqInfo/Member_Id = $listfor)">

which means "if .//InqInfo/Member_Id does not contain a node that is
equal to $listfor".

Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx 


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


Current Thread