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: xslt 2 grouping


DPawson@rnib.org.uk wrote:
<p>
<el att='a'>x</el>
<el att='b'>x</el>
<el att='c'>x</el>
<el att='d'>y</el>
</p>
I have about 1200 lines of this, so keys are out.
Why discount keys?

Because I have so many variants on (above) x, y.
ditto on the att values, so I would have to define about 200 unique
keys.
 <xsl:key name="generic" match="el"
   use="concat(@att,':',.)"/>

Iterate over @att, group by el content, or vice versa.
What's the problem?

J.Pietschmann


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]