Subject: Re: [xsl] Losing an attribute in transformation From: "Tracey Zellmann" <tracey.zellmann@xxxxxxxxxxx> Date: Thu, 13 Jul 2006 22:41:54 -0400 |
Thank you very much!! That worked perfectly.
After my xsl stylesheet transforms this to html, the attribute has been removed.
Not so much removed, as not copied. The default behaviour (for elements and attributes) is not to copy them to the output. If you use a minimal stylesheet with no templates and run it on any xml file you get no error, and get no elements in the result.
so if you want attributes in the result you need to copy them (or make them). So in this case after making the element
<xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml"> you want to copy all the attributes from the source element, so add <xsl:copy-of select="@*"/>
David
Current Thread |
---|
|
<- Previous | Index | Next -> |
---|---|---|
Re: [xsl] Losing an attribute in tr, David Carlisle | Thread | [xsl] A beef with XSLT Sometimes to, Karl Stubsjoen |
Re: [xsl] Losing an attribute in tr, David Carlisle | Date | RE: [xsl] Handling missing cells in, Michael Kay |
Month |