[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Another XSL Structure/Template Problem...

Subject: RE: Another XSL Structure/Template Problem...
From: "Zink, Juergen" <Juergen.Zink@xxxxxxxxxxxxxxxxxxxx>
Date: Wed, 30 Jul 2003 15:42:56 +0200
company structure template
Problem of default templates.

>Another problem i have is in the tree itself. Somehow, my xsl is putting
>descriptions of Data Containers e.g LookIn after its puts its name in the
>tree. I am not able to get rid of these descriptions. I do not want any
such
>descriptions in the tree.

	<xsl:template match="HSDataContainerType">
		<b><img src="dcopenicon.gif"><xsl:value-of
select="@name"/></img><br /></b>
		<div style="margin-left: 3em;">
==>HERE		<xsl:apply-templates select="*"/>
		</div>
	</xsl:template>

you select all children. The description is selected, but not matched.
Insert an empty template statement for HSDocumentation.

<xsl:template match="HSDocumentation"/>

And the text of the HSDocumentation will disappear.
Another possibility is to select not * but name all the
nodes which you want to process explicitly (HSString,...).
Of course you have to fill the ...

<xsl:apply-templates select="HSString|HSDate|..."/>

The first solution is quicker, the second more reliable.

Cheers,

Juergen


*****************************************************************************
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte 
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese 
eMail irrtuemlich erhalten haben, informieren Sie bitte sofort den 
Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren 
sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.

This e-mail may contain confidential and/or privileged information. 
If you are not the intended recipient (or have received this e-mail 
in error) please notify the sender immediately and destroy this e-mail. 
Any unauthorized copying, disclosure or distribution of the material 
in this e-mail is strictly forbidden.
*****************************************************************************


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.