xsl-list
[Top] [All Lists]

Re: [xsl] Fwd: Moving an Element to new place/Element Reposition

2009-02-10 11:50:24
arut che wrote:

    I want to move an element(floats-second child of root) to last
child of body(third child of root element)  for this i am using the
following code:
<xsl:template match="body">
<xsl:apply-templates select="sections,acknowledgment,../floats"/>
</xsl:template>
The above code moves the floats element and transform as i defined.
But it is also alive & transformed at its original location too.

In the template of the root element make sure you do not process floats elements e.g.
  <xsl:template match="/*">
    <xsl:copy>
      <xsl:apply-templates select="*[not(self::floats)]"/>
    </xsl:copy>
  </xsl:template>

If that does not help then please show a sample of your XML input document and also provide a sample of the XML result you want to create.

--

        Martin Honnen
        http://JavaScript.FAQTs.com/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>