Hi all,
 
I need to manipulate some elements into an XML like this:
 
<AAA> 
    <BBB id='1' bb='a'>
        <CCC id=1 c=1 ...>
        <CCC id=2 c=5 ...>
        <CCC id=4 c=13 ...>
        <CCC id=16 c=11 ...>
    </BBB>
    <BBB id='2' bb='e'>
        <CCC id=3 c=9 ...>
        <CCC id=5 c=8 ...>
        <CCC id=7 c=17 ...>
        <CCC id=11 c=2 ...>
    </BBB>
</AAA>
       
Usually CCC elements are sorted by id.
How can I move an CCC element one position UP or DOWN? Any ideas? What about BBB elements?
 
Thanx,
Stefan
 

Reply via email to