Re: [xsl] bad match expression

Subject: Re: [xsl] bad match expression
From: Alexander Johannesen <alexander.johannesen@xxxxxxxxx>
Date: Thu, 2 Feb 2006 19:51:31 +1100
On 2/2/06, Terence Kearns <terence.kearns@xxxxxxxxxxxxxxx> wrote:
> I don't know why but the following template match expression never
> gets matched :(
>match="FormElement[@type='text'][@type='password'][@type='submit'][@type='re
set']">

This means that the FormElement must satisfy *all* those conditions,
which it never will be. If you mean 'or', try

match="FormElement[@type='text' or @type='password' or @type='submit'
or @type='reset']">


Alex
--
"Ultimately, all things are known because you want to believe you know."
                                                         - Frank Herbert
__ http://shelter.nu/ __________________________________________________

Current Thread