|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: xsl value-of
Hi Matias,
> So how can i reach the text attribute of the label element according
> the id of the label and the id of the z:row?
The easiest thing to do is to create a key that indexes the label
elements by their id:
<xsl:key name="labels" match="label" use="@id" />
You can then, for example, get the label element whose id is 03 using:
key('labels', '03')
So if the current node is a z:row element, you can get the value of
the label that has the same id as the id of the z:row element using:
<xsl:value-of select="key('labels', @id)" />
(Note that you were after the "string value" of the label, or its text
node child, not the "text attribute" -- the label elements in your
example didn't have any attributes called 'text'.)
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! 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
|






