xsl-list
[Top] [All Lists]

Re: [xsl] referencing nodes via variables

2006-08-30 07:09:57
Sam Carleton wrote:

I have not used keys before.  Just read about them and
here is what I have so far:

<xsl:key name="method" match="method" use="id"/>

Then to get the name it would be this:

<xsl:value-of select="key('method', @methodID)/name"/>

  Yes, perfect.

The only thing I don't understand is if the key can handle
multiple conditions, that being both the method ID and the
method version.

  The trick is to combine multiple values in one.  For
example using concat():

    concat(@methodID, '.-.', @methodVer)

  The string in the middle depend on the value spaces of the
concatenated nodes (to be sure to never get the same result
from different inputs).

In case you are wondering the parser that is in use is
Microsoft .Net 2.0's XslCompiledTransform which is only
XSLT 1.0.

  No problem.  The nice thing with XSLT 2.0 is you can
define the combining function.  So whatever it is defined
to, you use it in the key definition and each key call.  In
XSLT 1.0, you have to repeat each time the complete
expression (with concat...) (don't forget you can use a
global variable for the string in the middle).

  Regards,

--drkm




















        
 p5.vert.ukl.yahoo.com uncompressed/chunked Wed Aug 30 12:13:41 GMT 2006 
        
                
___________________________________________________________________________ 
Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet 
! 
Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos 
expériences. 
http://fr.answers.yahoo.com 


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