Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 11th, 2005, 03:05 PM
Registered User
 
Join Date: Sep 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Match element based on attribute of child?

I'd like to restrict a template to a specific element that has a specific child with a specific attribute:

<outer>
 <inner type="good"/>
</outer>
<outer>
 <inner type="notgood"/>
</outer>

Given the above, I need a MATCH= pattern that selects the first OUTER element but not the second. I know I need a predicate

 <xsl:template match="outer[inner ... ]">

but I don't know how to specify a predicate that tests an attribute of a child element.

TIA for any help you can offer.

 
Old September 11th, 2005, 03:26 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

<xsl:template match="outer[inner[@child='good']]">

or

<xsl:template match="outer[inner/@child='good']">

(they're equivalent)

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
Attribute to Child element Conversion kudzuconf XSLT 6 July 13th, 2007 04:02 AM
Match by attribute. ole_v2 XSLT 6 November 11th, 2006 10:24 AM
inserting element wihout template match gonzalocordero XSLT 2 July 3rd, 2006 12:46 PM
document(), attribute and name() match perropicante XSLT 8 November 17th, 2004 07:14 AM
Urgent!! code for no match in Subform based query smercer Access 3 September 10th, 2004 11:15 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.