當(dāng)用戶從ComboBox控件中的下拉列表中選擇一個(gè)項(xiàng)目時(shí),數(shù)據(jù)項(xiàng)將顯示在控件的提示區(qū)域中。
ComboBox和DropDownList控件之間的一個(gè)區(qū)別是ComboBox控件的提示區(qū)域是通過(guò)使用TextInput控件實(shí)現(xiàn)的,而在DropDownList控件的情況下,它是Label控件。 因此,用戶可以編輯控件的提示區(qū)域,以輸入不是可用選項(xiàng)之一的值。
以下是 spark.components.ComboBox 類的聲明:
public class ComboBox extends DropDownListBase implements IIMESupport
S.N. | 屬性和描述 |
---|---|
1 | enableIME:Boolean [只讀] |
2 | imeMode:String |
3 | itemMatchingFunction:Function = null 指定用于在用戶在提示區(qū)域中輸入字符時(shí)用于搜索項(xiàng)目列表的回調(diào)函數(shù)。 |
4 | labelToItemFunction:Function 指定回調(diào)函數(shù),將輸入提示區(qū)域的新值轉(zhuǎn)換為與數(shù)據(jù)提供者中的數(shù)據(jù)項(xiàng)相同的數(shù)據(jù)類型。 |
5 | maxChars:int The maximum number of characters that the prompt area can contain, as entered by a user. |
6 | openOnInput:Boolean = true 如果為true,則當(dāng)用戶編輯提示區(qū)域時(shí),下拉列表將打開(kāi)。 |
7 | prompt : String 如果/當(dāng)輸入文本為null時(shí)要顯示的文本。 |
8 | restrict:String 指定用戶可以在提示區(qū)域中輸入的字符集。 |
S.N. | 方法和描述 |
---|---|
1 | ComboBox() 構(gòu)造函數(shù)。 |
此類繼承以下類中的方法:
spark.components.supportClasses.DropDownListBase
spark.components.List
spark.components.supportClasses.ListBase
spark.components.SkinnableDataContainer
spark.components.supportClasses.SkinnableContainerBase
spark.components.supportClasses.SkinnableComponent
mx.core.UIComponent
mx.core.FlexSprite
flash.display.Sprite
flash.display.DisplayObjectContainer
flash.display.InteractiveObject
flash.display.DisplayObject
flash.events.EventDispatcher
Object
讓我們按照以下步驟通過(guò)創(chuàng)建測(cè)試應(yīng)用程序來(lái)檢查Flex應(yīng)用程序中ComboBox控件的使用:
步驟 | 描述 |
---|---|
1 | 在 Flex - 創(chuàng)建應(yīng)用程序章節(jié)中所述,在包 com.tutorialspoint.client 下創(chuàng)建名為 HelloWorld 的項(xiàng)目。 |
2 | 修改 HelloWorld.mxml ,如下所述。 保持文件的其余部分不變。 |
3 | 編譯并運(yùn)行應(yīng)用程序,以確保業(yè)務(wù)邏輯按照要求工作。 |
以下是修改的mxml文件的內(nèi)容 src / com.tutorialspoint / HelloWorld.mxml
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%" minWidth="500" minHeight="500" > <fx:Style source="/com/tutorialspoint/client/Style.css"/> <fx:Script> <![CDATA[ import mx.collections.ArrayCollection; [Bindable] public var data:ArrayCollection = new ArrayCollection( [ {value:"France", code:"FR"}, {value:"Japan", code:"JP"}, {value:"India", code:"IN"}, {value:"Russia", code:"RS"}, {value:"United States", code:"US"} ] ); private function mappingFunction(input:String):Object { switch (input){ case "France": return {value:input, code:"FR"}; case "Japan": return {value:input, code:"JP"}; case "India": return {value:input, code:"IN"}; case "Russia": return {value:input, code:"RS"}; case "United States": return {value:input, code:"US"}; } return null; } ]]> </fx:Script> <fx:Declarations> <mx:DateFormatter id="dateFormatter" /> </fx:Declarations> <s:BorderContainer width="550" height="400" id="mainContainer" styleName="container"> <s:VGroup width="100%" height="100%" gap="50" horizontalAlign="center" verticalAlign="middle"> <s:Label id="lblHeader" text="Form Controls Demonstration" fontSize="40" color="0x777777" styleName="heading"/> <s:Panel id="comboBoxPanel" title="Using ComboBox" width="420" height="200"> <s:layout> <s:VerticalLayout gap="10" verticalAlign="middle" horizontalAlign="center"/> </s:layout> <s:HGroup> <s:Label text="Index :"/> <s:Label text="{comboBox.selectedIndex}" fontWeight="bold"/> <s:Label text="Value :"/> <s:Label text="{comboBox.selectedItem.value}" fontWeight="bold"/> <s:Label text="Code :"/> <s:Label text="{comboBox.selectedItem.code}" fontWeight="bold"/> </s:HGroup> <s:ComboBox id="comboBox" dataProvider="{data}" width="150" labelToItemFunction="{mappingFunction}" selectedIndex="0" labelField="value"/> </s:Panel> </s:VGroup> </s:BorderContainer> </s:Application>
準(zhǔn)備好所有更改后,讓我們以正常模式編譯和運(yùn)行應(yīng)用程序,就像在 Flex - 創(chuàng)建應(yīng)用程序中一樣 章節(jié)。 如果一切順利,您的應(yīng)用程序,這將產(chǎn)生以下結(jié)果:[在線試用]
更多建議: