Hi,
Is it possible to get the attribute value of a parent of a current-grouping-key()?
for example, I have this Xpath expression:
Code:
<xsl:for-each-group group-by="." select="for $w in tokenize(string(.), '\W+') return lower-case($w)">
<xsl:sort select="count(current-group())" order="descending"/>
.......
I want the value of the ../@id
How can I do this?