I'm trying to bind a RadGrid to an external xml file. The xml looks something like this:
<?xml version="1.0" encoding="utf-8"?>
<catalog>
<item>
<id>0ecd4410-3b06-454e-bf0f-97d6323f61c9</id>
<name>Name #1</name>
</item>
<item>
<id>0ecd4410-3b06-454e-bf0f-97d6323f61c9</id>
<name>Name #2</name>
</item>
</catalog>
All of the examples I found were using the xml attributes and not the inner text of a xml node. Is it possible to bind the above xml?