Getting XML data without showing in columns
Say I have the following XML:
<xml>
<otherdata></otherdata>
<somedata>
<a></a>
<b></b>
<c></c>
</somedata>
</xml>
I use the XML.Table structure to load the XML, and I want to display columns a,b and c. However, I want to use "otherdata" for some branching logic in the code. Once I have the XML loaded using table.request(), can I navigate the DOM and extract values from this XML file? Even though, my table columns and XPath are set to /xml/somedata
Does this make sense?
Thanks!
<xml>
<otherdata></otherdata>
<somedata>
<a></a>
<b></b>
<c></c>
</somedata>
</xml>
I use the XML.Table structure to load the XML, and I want to display columns a,b and c. However, I want to use "otherdata" for some branching logic in the code. Once I have the XML loaded using table.request(), can I navigate the DOM and extract values from this XML file? Even though, my table columns and XPath are set to /xml/somedata
Does this make sense?
Thanks!
Curtis
January 22,