R
ricky
i have this xml document:
<order>
<item occur="unbounded">
<ref>122</ref>
<name>bla bla</name>
</item>
<item occur="unbounded">
<ref>122</ref>
<name>bla bla</name>
</item>
</order>
and i want with xslt transform to:
<order>
<item occur="unbounded">
<ref>122</ref>
<name>bla bla</name>
</item>
<item occur="unbounded">
<ref>122</ref>
<name>bla bla</name>
</item>
<item occur="unbounded">
<ref> </ref>
<name> </name>
</item>
</order>
- i want to clone a node wanever find a occur attribute. But i want
that the rest stays intact. the occur attribute can be in a deepiest
node...and the name of the nodes can be others...
thanks in advance
ricky
<order>
<item occur="unbounded">
<ref>122</ref>
<name>bla bla</name>
</item>
<item occur="unbounded">
<ref>122</ref>
<name>bla bla</name>
</item>
</order>
and i want with xslt transform to:
<order>
<item occur="unbounded">
<ref>122</ref>
<name>bla bla</name>
</item>
<item occur="unbounded">
<ref>122</ref>
<name>bla bla</name>
</item>
<item occur="unbounded">
<ref> </ref>
<name> </name>
</item>
</order>
- i want to clone a node wanever find a occur attribute. But i want
that the rest stays intact. the occur attribute can be in a deepiest
node...and the name of the nodes can be others...
thanks in advance
ricky