Re: [xsl] XSL Variable not getting set

Subject: Re: [xsl] XSL Variable not getting set
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 14 Mar 2007 14:04:14 GMT
> I have changed my if to:
> <xsl:if test="$Found = ''">

so that's changed your template from not using the variable to using it.

> and still no luck.

You need to show more code, probably. You are calling current-group()
but don't show any use of for-each-group, (if there is none,
current-group() will be empty, so $Found will always be the empty string
and not($found) will always be true. If this named template is being
called from inside a for-each-group, it depends on how its called...

David

Current Thread