Inside a for-each-group statement in XSLT2 the focus changes to a set of representative elements, one from each group. This means that, for example, last() returns the number of groups (because that equals the number of representative elements, and hence the "size" of the focus). Position() returns (essentially) the group number because it is the position of the representative element for the group under discussion within the sequence of representative elements, etc.

My question is whether it is possible to reference the set of those representative elements in an Xpath2 statement. Something like current-group() except containing the set of all representative elements (one from each group) rather than the set of all elements from the current group.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Well inside the for-each-group you process each group and not all groups. Thus to find the first item in all groups you would need

<xsl:variable name="reps" as="node()*">
  <xsl:for-each-group select="foo" group-by="bar">
    <xsl:sequence select="."/>
  </xsl:for-each-group>
</xsl:variable>

in my understanding.

link|improve this answer
Thanks, I think this gives me the sequence I"m looking for. I was thinking that such a thing could be a built-in function. – David R Nov 16 '11 at 19:15
feedback

Use:

current-group()[1]

or:

current-group()[last()]
link|improve this answer
Doesn't "current-group()[1]" just give you the particular (single) representative element for the group you are looking at? I'm looking for the set of all representative elements at once. – David R Nov 16 '11 at 19:11
Just use <xsl:sequence select="current-group()[1]"/> inside the <xsl:for-each-group ...> and campture this in a variable, that is of type item()* or a more specific type. – Dimitre Novatchev Nov 16 '11 at 20:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.