B
blank101
I am an xml beginner trying to figure out if xml will be a good tool
for a problem.
I want to use the functionality associated with viewing raw xml files
(namely the expanding +'s and -'s), but I also want to not display
elements.
For example, if I had:
<name attr='Person 1'>
<first>Carl</first>
<last>Strange</last>
</name>
<name attr='Person 2'>
<first>Jules</first>
<last>Verne</last>
</name>
I would want it to display as
+ Person 1
+ Person 2
where I could then expand it to:
- Person 1
Carl Strange
+ Person 2
Any recommendations? Is this easy in xml? Or is some other tool
better? Thanks
for a problem.
I want to use the functionality associated with viewing raw xml files
(namely the expanding +'s and -'s), but I also want to not display
elements.
For example, if I had:
<name attr='Person 1'>
<first>Carl</first>
<last>Strange</last>
</name>
<name attr='Person 2'>
<first>Jules</first>
<last>Verne</last>
</name>
I would want it to display as
+ Person 1
+ Person 2
where I could then expand it to:
- Person 1
Carl Strange
+ Person 2
Any recommendations? Is this easy in xml? Or is some other tool
better? Thanks