xml editor

Supported platforms

Compatible with Windows7 & Mac OS X Snow Leopard

Ready for data server software
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: How to get xml tag in the xsl rule


Subject: Re: How to get xml tag in the xsl rule
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 29 Feb 2000 19:12:09 GMT

<xsl:template match="/ | *">
<input type="text" name="NEED SOME WAY TO GET TAG HERE" value="{.}"
maxlength="50" size="50"></input>
</xsl:template>


Are you _sure_ you want that rule to match / ?
since "/ | *" matches / this template will be called and then there is
nothing to put in the name="" because the root does not have a name
and nothing else will happen as the template does not call
apply-templates and so processing will stop and no elements will be
matched.


So I would guess that you want 


<xsl:template match="*">
<input type="text" name="name(.)" value="{.}"
maxlength="50" size="50"></input>
</xsl:template>

but that again will not go down the tree it will only do top level
elements

David
PS you do not want the tag you want the element name (these are
different things)


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



Current Thread
XML Editor | XML Author | WYSIWYG Editors | Schema Editor | XSD Documentation | XSL/XSLT Editor | XQuery | XML Databases | SVN Client
© 2002-2011 SyncRO Soft Ltd. All rights reserved. | Sitemap | Privacy Policy | This website was created & generated with <oXygen/>®XML Editor