0
약간의 도움을주십시오. 플렉스 모바일 애플리케이션의 데이터베이스 ID에 Sqlite 데이터베이스를 입력 할 수 없습니다. 아래 코드는 다음과 같습니다.플렉스 모바일 응용 프로그램에서 플레이 북 용 드롭 다운 목록 ID를 sqlite 데이터베이스에 입력하는 방법은 무엇입니까?
<fx:Script>
<![CDATA[
[Bindable]public var acItem : ArrayCollection = new ArrayCollection(
[ {ItemName:'ABC',data:0},
{ItemName:'XYZ',data:1},
{ItemName:'PQR',data:2},
]);
protected function dropdown_changeHandler(e:IndexChangeEvent):void
{
selection = e.newIndex;
}
]]>
</fx:Script>
<s:DropDownList id="dropdown" width="150" height="61.35" change="dropdown_changeHandler(event)"
dataProvider="{acItem}" fontSize="16" labelField="ItemName"
prompt="SelectDatabase"
x.landscape="492" y.landscape="380" width.landscape="215"
height.landscape="31.35"
x.portrait="243" y.portrait="568" width.portrait="215" height.portrait="31.35">
</s:DropDownList>