|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: find unique codes
Hi Xiaocun,
> I am still struggling with this problem. I was thinking, is there a
> way to use declare one xsl:key across two different types of
> elements,
> ExtendedAttributeDefinition/@ExtendedAttributeDefinitionCode and
> ExtendedAttribute/@ExtendedAttributeCode?
Yes. You can use two xsl:key elements with the same name, as follows:
<xsl:key name="extended-attrs"
match="ExtendedAttributeDefinition"
use="@ExtendedAttributeDefinitionCode" />
<xsl:key name="extended-attrs"
match="ExtendedAttribute"
use="@ExtendedAttributeCode" />
If ExtendedAttributeDefinition elements can't have
ExtendedAttributeCode attributes, and ExtendedAttribute elements can't
have ExtendedAttributeCode attributes, then this is exactly the same
as:
<xsl:key name="extended-attrs"
match="ExtendedAttributeDefinition | ExtendedAttribute"
use="@ExtendedAttributeDefinitionCode |
@ExtendedAttributeCode" />
but it's easier to see what's going on with the separate keys.
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
|

Cart








