I have a cfc with a simple query. SELECT lastName FROM
tblUsers I'm
trying to do... well anything with the data. I can see in flexbuilder
that I'm getting the wddxPackage and all the data.the package is
formated:
Jones
I'm using: public var theData:XMLList;
public function onResult(e:ResultEvent):void{ theData =
e.result.wddxPacket.data.recordset.field[0]; }to access the data. I
don't get any exceptions, however the datagrid doesn't
populate am I doing this all wrong?what is the best way...