Re: [xsl] Comparing of attribute and CDATA value

Subject: Re: [xsl] Comparing of attribute and CDATA value
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Tue, 23 Nov 2004 16:26:14 +0000
Hi Sven,

> i tried to compare one CDATA value with an attribute, but i doesn't work.
>
> Does anybody know something about it?

In the test:

  value = @id

you're comparing the value of the <value> element child of the current
node with the value of the current node's id attribute.

In your sample XML, the <value> element and the @id attribute don't
have the same element parent.

I think you need something like:

  parameter/value = itable/@id

but it depends on what the current node is when you're doing the test:
the paths need to both be relative to that current node.

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/

Current Thread