This question is locked. New answers and comments are not allowed.
I have some xml representing a table of contents for marketing reports. the xml has data in some different attributes depending on the node name. So, a little custom parsing is necessary.
The xml has three kinds of nodes
"table-of-contents" (this is the root node)
"section" nodes (can contain child section nodes or table nodes)
"table" nodes"
I want to transform this xml into a tree view:
This is what I have but I'm having trouble with the syntax and the arguments to the BindTo method. Please help me fix it up. I think that I must be close.
The xml has three kinds of nodes
"table-of-contents" (this is the root node)
"section" nodes (can contain child section nodes or table nodes)
"table" nodes"
I want to transform this xml into a tree view:
This is what I have but I'm having trouble with the syntax and the arguments to the BindTo method. Please help me fix it up. I think that I must be close.