Loading XML into Tree
-
I want to load xml file data into a tree view in .NET using DOM. The thing is that if there are multiple "book" nodes in the xml file. xml tree shows only one instance of "book". If one book node in xml file contains a child node say "publisher" which the other book node doesn't contain, the tree view still show the "publisher" node. You can say that tree view should show the union of all the child nodes for the element "book". The way stylus does or the way xmlspy does. Any solution?? @!$h@
-
I want to load xml file data into a tree view in .NET using DOM. The thing is that if there are multiple "book" nodes in the xml file. xml tree shows only one instance of "book". If one book node in xml file contains a child node say "publisher" which the other book node doesn't contain, the tree view still show the "publisher" node. You can say that tree view should show the union of all the child nodes for the element "book". The way stylus does or the way xmlspy does. Any solution?? @!$h@
One solution is to transform the original document into your desired format through xslt first.
-
I want to load xml file data into a tree view in .NET using DOM. The thing is that if there are multiple "book" nodes in the xml file. xml tree shows only one instance of "book". If one book node in xml file contains a child node say "publisher" which the other book node doesn't contain, the tree view still show the "publisher" node. You can say that tree view should show the union of all the child nodes for the element "book". The way stylus does or the way xmlspy does. Any solution?? @!$h@