|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: xsl:key question
Kerin Cosford wrote:
> <Drug>
> <DrugCitation>
> <DrugCompanyList>
> <DrugCompany>
> <Company CDLID="18767">
> <CompanyCitation>
> <CompanyName>
> Johnson and Johnson
> </CompanyName>
> </CompanyCitation>
> </Company>
> </DrugCompany>
> </DrugCompanyList>
> </DrugCitation>
> <DrugDevelopmentList>
> <DrugDevelopment>
> <CompanyRef CDLID="18767"/>
> <DrugDevelopment>
> </DrugDevelopmentList>
> </Drug>
>
> I need to have an xsl:key which will return the text within <CompanyName>
> when a CLID="" value of the <Company> element is passed to it (The value of
> the CDLID attribute is taken from the <CompanyRef> element).
>
> How do I do this? All of the xsl:key examples I've come across only concern
> retrieving values from the same element that is queried. I'm sure this is a
> simple XPath expression, but, as I say, I just can't seem to work it out
> today.
Hi Kerin,
Use:
<xsl:key name="kName" match="CompanyName" use="../../@CDLID"/>
or, if you really need just the text() children of "CompanyName":
<xsl:key name="kNameText" match="CompanyName/text()" use="../../../@CDLID"/>
Cheers,
Dimitre Novatchev.
__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.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
|

Cart








