, , mx. editable, , mx. In spark, ComboBox extends DropDownListBase .
ComboBox - DropDownListBase. DropDownListBase, ComboBox, .
, ComboBox TextInput Label DropDownList. , .
, DropDownList . ComboBox , . , , , .
ComboBox , . , . .
DropDownList .
TextInput , . mx (Flex-3) creationComplete; , .
: , , ( DropDownBox). partAdded.
override protected function partAdded(partName:String, instance:Object):void
{
super.partAdded(partName, instance);
if (instance == textInput)
{
textInput.editable = false;
}
}
: . ComboBox.as ,
API editable selectable
, DropDownList !
, mx ComboBox.
, editable - false.
false .
public function CustomCombo() {
super();
this.editable = false;
}