How to implement dynamic hierarchy

Hello!

I need to render some hierarchical data in XML with XForms. How I can do 
this?

Problem: I need to edit nested objects with variable nested level. So I 
need to render tree of objects in XForms.

This is example of instance:

<xf:instance>
    <object xmlns="" title="root">
       <object title="Object1"/>
       <object title="Object2">
          <object title="Object3">
             <object title="Object4">
                ...
             </object>
          </object>
          <object title="Object5000"/>
       </object>
    </object>
</xf:instance>

I need to edit @title for each <object> and add/delete <object> elements 
on any level.

Thanks.

Received on Wednesday, 3 August 2005 09:56:32 UTC