Re: [xsl] Setting Attributes from Key value

Subject: Re: [xsl] Setting Attributes from Key value
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 21 Aug 2007 17:45:17 +0100
  <xsl:template match="//Group

don't start a match with // (it doesn't do anything) at all in this
case.
    <xsl:copy select=".">
that's a syntax error xsl:copy doesn't take an attribute

key('attribute-format-by-key',@Key)

that returns a Attribute-Format element so

key('attribute-format-by-key',@Key)[@ColIndex]

returns that element if it has a ColIndex attribute and nothing
otherwise. 

I didn't follow all your description but I think you want

  <xsl:template match="Grouping[not(key('attribute-format-by-key',@Key)]"/>

and


  <xsl:template match="Grouping">
    <xsl:copy>
       <xsl:attribute name="ColIndex">
         <xsl:value-of
    select="count(key('attribute-format-by-key',@Key)/preceding-sibling::*)"/>
   </xsl:attribute>
    </xsl:copy>
  </xsl:template>


David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

Current Thread