|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: referencing nodes via variables
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 ___________________________________________________________________________ Dicouvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Riponses pour partager vos connaissances, vos opinions et vos expiriences. http://fr.answers.yahoo.com
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Cast Your Vote
We need your help – Vote for DataDirect XML Products!
Winners and finalists announced at SOA World Conference in November. Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|







