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: Conditional expressions using optional attributes/elements


Hi.

> Problem 1:

> <xsl:if test="@enabled != 'false' and @override != 'false'">
> <!-- do something -->
> </xsl:if>
> But if the attributes are not defined, it doesn't act as expected.

Try not(@enabled='false') and not(@override='false')
See the definitions of equality expressions with node-sets. You'll
understand why a != b is not the same as
not(a=b)

> I have an element which has optional *elements*, and I want to test the
> values of attributes of these elements.  Here's the DTD:

> <xsl:if test="enabled/@value != 'false' and override/@value != 'false'">
> <!-- do something -->
> </xsl:if>

> But if the *elements* are not defined, it doesn't act as expected.

The same - use not(enabled/@value = 'false').

Bye.
/lexi



 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]