Hi!
I want to add a XML-object’s text() a DataGridColumn so that it displays the data from the XML tree below
This is what I got right now:
//dataGrid is a DataGrid decared in MXML
//dgc is a new DataGridColumn declared earlier in this script
var xmlSet:XML = new XML();    
xmlSet = 
<xmlSet>
 <cell>
  <dell>Hello</dell>
  <dell>Mike</dell>
 </cell>
</xmlSet>;
dataGrid.dataProvider = xmlSet.cell.dell; //Is it right here?
dgc.dataField = ; //What do I put here? Tried many things, but none have worked
Please help!
//Kenwio