dropdown list does not show its values
Once I run my Flex application, it successfully gets the SOAP response and populate the values in dropdown box but they are empty, in other words, when I hover the mouse on my dropdown box I can see that it has three empty values. my flex code <fx:Script> <![CDATA[ import mx.events.FlexEvent; protected function dropDownList_creationCompleteHandler(event:FlexEvent):void { myResults.token = myservice.myUsers(); } ]]> </fx:Script> <fx:Declarations> <myservice:myservice id="myservice"/> <s:CallResponder id="myResults"/> </fx:Declarations> <s:FormItem label="Label"> <s:DropDownList id="dropDownList