xsl-list
[Top] [All Lists]

Re: Newbie question - Muenchian method and XPath

2005-02-22 15:37:00

So it's dragging all <item>s together (as xsl:key is obviously document wide 
and I can't use scope)., which isn't what I want! (I want:

I think Jeni has an example (the archives of this list will have lots:-)
but basically you just need to make sure that the key has a different
value for each different group, so if children of group are to be
grouped separately include that in the key

<xsl:key name="x" match="item" use="concat(../@value,':',@name)"/>

and use a similar concat in the call to key() so your first group is all
items which have a key of 1:a for example which should just return apple
and banana.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>