'XSL : Look up for XSL command retrieve an XML nodes list
Is there in the XSL commands, a tool to retrieve a list of nodes ex :
<Root>
<Params>
<First>1</First>
<Second>2</Second>
<Group>
<Data>Example</Data>
<Info>Show</Info>
</Group>
</Params>
</Root>
so ,
<XSL:[Command] select="/Root/Params"/>
will give :
<Params>
<First>1</First>
<Second>2</Second>
<Group>
<Data>Example</Data>
<Info>Show</Info>
</Group>
</Params>
Solution 1:[1]
<xsl:copy-of select="/Root/Params"/>
will do that (probably, since the context is not entirely clear).
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | michael.hor257k |