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: If nodeset does NOT include


> > 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@ntlworld.com
work: Michael.Kay@softwareag.com 


 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]