I'm still using Beta 3 (stupid slow procurement department)...

I'm working on extending framework components, and am playing with the
combobox.

When I run my version, it functions as expected, but the arrow on the
combo box (what you click to deop it down) does not display.  I put a
generic combo next to it, and it looks fine.

Here's my main app code:
<bah:StateComboBox id="todd" x="30" y="30" rowCount="9"
displayType="{StateComboBox.NAMEABBREV}" />
<mx:ComboBox x="30" y="90" dataProvider="{todd.dataProvider}"
labelFunction="test" />

and the constructor of StateComboBox (which extends ComboBox):
public function StateComboBox()
{
// let combobox do its thing
super();
//add our dataprovider
this.dataProvider = _data;
this.labelFunction = labelFormatter;
}

I've got an array in there and a label function, but that's it.

Other than super()-ing the ComboBox, is there somthing else I'm
supposed to be doing?

Or is this a bug in B3? (I'm using Player 9,0,16,0)

Thanks!

-- TC






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to