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: XSL sorting


Hi Maia,

> I'd like to sort all events by attrList/attr/data, where
> attrList/attr/name="some value" for example: trap type.

You want to get the attr whose name is "trap type". You can do this
with a predicate, as follows:

  attrList/attr[name = 'trap type']

>From that attr element, you want to get the data element, which you
can do with:

  attrList/attr[name = 'trap type']/data

So your sort should look like:

  <xsl:apply-templates select="Event">
    <xsl:sort select="attrList/attr[name = 'trap type']/data" />
  </xsl:apply-templates>

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]