Hi,
I came on this forum a few days to get a problem solved and I was helped really quickly so I'm hoping for a simialr experience this time!
I have an XML file:
I was wanting to represent this as a tree structure - by the way to confuse matters, the order is backwards! (the highest number is the root parent. For example
- DMS
- BFCI
- BBCDS
Note: There number of parent portals is not limitied, although in practice it would only ever be around 5 maximum.
Thanks everyone!
I came on this forum a few days to get a problem solved and I was helped really quickly so I'm hoping for a simialr experience this time!
I have an XML file:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<root type='foo'>
<child>
<modifier>BBCDS</modifier>
<modifierdescription>BBCDS Project</modifierdescription>
<level>2</level>
</child>
<child>
<modifier>BFCI</modifier>
<modifierdescription>BFCI Project</modifierdescription>
<level>3</level>
</child>
<child>
<modifier>DMS</modifier>
<modifierdescription>Document Managment System</modifierdescription>
<level>4</level>
</child>
</root>
I was wanting to represent this as a tree structure - by the way to confuse matters, the order is backwards! (the highest number is the root parent. For example
- DMS
- BFCI
- BBCDS
Note: There number of parent portals is not limitied, although in practice it would only ever be around 5 maximum.
Thanks everyone!