|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] 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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








