difference between with and without self in test condition
Hi,
We have the below xslt code in our proj which did not work today.
<xsl:if test="*[not(base:tit or tit)]">
But on modifying to below
<xsl:if test="*[not(self::base:tit or tit)]"> it worked
what is the difference between the two?
can you please help me in understanding this code?
|