Hi, everyone!
In my PHP file, there is a function that returns an Array $user_array
the data in this Array is something like this:
[0]
atclass = "1"
sid = "3"
ssname = "Joe"
[1]
atclass = "1"
sid = "4"
ssname = "Sam"
[2]
atclass = "1"
sid = "5"
ssname = "Simth"
And I want to add the `sid` and `ssname` into the ComboBox.
So in the flex, I use 'result' in the function to receive the data:
public ssProvider:Array;
...
gateway.call("cys.getStudents", new Responder(onResult,
onFault),atClass); //It gets the data from database
...
public function onResult(result:Array):void
{
ssProvider = result;
}
...
<mx:ComboBox dataProvider="{ssProvider}"/>
And it just display [object][object], nothing else....
How to fix it?