Hi,

I wanna parse a XML file like this:


<contacts>
   <contact>
      <name href="http://www.example.com";>Huber</name>
      ...
   </contact>
<contacts>


I have no problem parsing it, except of the href within the name tag.
My DataGrid looks like this:

<mx:DataGrid dataProvider="{xmlContacts.contact}">
   <mx:columns>
      <mx:DataGridColumn headerText="Name" dataField="name" />
      <mx:DataGridColumn headerText="Link" dataField="???" />
      ...
   </mx:columns>
</mx:DataGrid>  

Reply via email to