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]
Other format: [Raw text]

Re: Retrieving "included" from "excluded"


Hi Alex,

> and I only want to display "Foobar" (using fo, when matching
> excludedFields). How could I do that ?

Try selecting the fields that you want:

  Fields/field

and then filtering them to include only the ones whose names are *not*
listed within the ExcludedFields:

  Fields/field[not(@name = ../../ExcludedFields/field/@name)]

Since the list of excluded field names is always going to be the same,
it's best to store that in a variable if you can:

  <xsl:variable name="excludedFields"
                select="ExcludedFields/field/@name" />
  <xsl:value-of
    select="Fields/field[not(@name = $excludedFields)]/@name" />

Cheers,

Jeni

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


 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]