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 April 20th, 2008, 01:04 PM
Registered User
 
Join Date: Apr 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to detect the level of an element

HI

I would like to detect the level of an element in according to his root.
Quote:
quote:
  <Issue issueID="" composer="" date="">
    <Proposition composer="" date="" level="1" actname="proposition">
      <Agreement composer="" date="" level="2"></Agreement>
    </Proposition>
  </Issue>
Suppose that I want to output all elements nested just in the "Issue" element and not in it's sub element and I also don't know their name(Proposition is an example and I have to be able to output even if it changes).

How can I output an element considering the only information I have that element is it's level(from the root), by the way of an attribute("level").

Thanks in advance

Ali

 
Old April 20th, 2008, 04:43 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

If Issue is the current element then you can process all its children, regardless of their name, using <xsl:apply-templates select="child::node()"/>. In fact child::node() abbreviates to node(), and this is the default for apply-templates anyway.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old April 20th, 2008, 04:47 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

I fear my response probably wasn't very helpful, but it's hard to know where you are having problems. I think it would help if you showed us the output you want to generate, and the code you have written so far.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old April 21st, 2008, 01:11 AM
Authorized User
 
Join Date: Apr 2008
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Using XPath you can locate an element according to its level attribute with an expression such as this :
Code:
descendant::*[@level=$mylevel]





Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem adding element to the previous element dani1 XSLT 5 September 10th, 2008 01:38 AM
translate element name to element name lexzeus XSLT 3 September 4th, 2006 09:04 AM
adding of element and assigning to one element sushovandatta XSLT 2 November 16th, 2004 07:04 PM
Protection level noman77 .NET Framework 2.0 0 October 23rd, 2004 07:33 AM
2-Level Menu mahulda ASP.NET 1.0 and 1.1 Basics 1 April 11th, 2004 09:29 PM





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