xsl-list
[Top] [All Lists]

Re: [xsl] Setting Attributes from Key value

2007-08-21 09:45:45

  <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)[(_at_)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. 
________________________________________________________________________

--~------------------------------------------------------------------
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>