i am populating a combobox via a webservice call and it is returning
the correct listed results.
the problem is that the first item in the list appears as Object,
object. the items below it read as the should.
that is until an item is selected, when selected it closes the
combobox but does not show the selection correctly, instead it once
again reads object, object
any direction greatly appreciated
here is the tag sample
<mx:ComboBox id="PLID" name="PLID"
dataProvider="{wsDashBoard.selectUserNames.lastResult}" width="150">
<mx:itemRenderer>
<mx:Component>
<mx:Text text="{data.STRUSERFIRSTNAME} {data.STRUSERLASTNAME}"/>
</mx:Component>
</mx:itemRenderer>
</mx:ComboBox>