hi all, ive used a httpservice to retrieve an xml document at runtime.
the result of this service call is used as my datagrid dataprovider. when i click an item i set a var selectedItem equal to event.target.selectedItem, which works fine to display the selected row. how do I set selectedItem to equal the first node? ive tried combinations of the following : myXMLservice.result.childNodes[0]; myXMLservice.result.firstChild; and so on... any ideas?

