I am having difficulty accessing the fields from an xml file generated from a geodatabase (XML Recordset Document). I want to populate a dropdown box with landowner names pulled from a parcel polygon layer. I am able to get Flex to see the correct number of total records but I cannot get Flex to see the correct field - in this case called "Owner". I have marked in the code below where I seem to be having the issue. I have attached a screen capture of the xml export file I am using showing both the expanded Records and Fields. The specific label field I am trying to get Flex is to see is about halfway down the Record values in the screen capture. The field is named "Owner" (and the value in this case is "HOLDEN JERRY CLARK.....)" What do I need to use in the labelField to properly access that "Owner" field. Any help would greatly appreciated. I am very new to the Flex API.
<fx:Declarations>
<s:HTTPService id="employeeService"
url="assets/parceltable.xml"/>
</fx:Declarations>
<s:Form x="10" y="70">
<s:FormItem label="Employee:">
<s:DropDownList id="dropDownList"
dataProvider="{employeeService.lastResult.RecordSetData.Data.Records.Record}" #######This line sees the proper number of records (5).########
labelField="Owner"/> ##########Here is where I am having the problem#########
</s:FormItem>
[ATTACH=CONFIG]15194[/ATTACH]