0
[Bindable]
public var groupsList:ArrayCollection;
public function groupListRH(event:ResultEvent):void
{
groupsList=event.result as ArrayCollection;
}
<mx:ComboBox dataProvider="{groupsList}"
labelField="groupName"
id="grpLst" width="150"
prompt="Select one group "
close="selectedItem=ComboBox(event.target).selectedIndex"
focusIn="init();" />
<mx:LinkButton label="New Group" id="creatgrp" click="addNewGroup();"/>
這裏是從RemoteObject獲取組的數組(groupName,GroupID每行)並顯示在ComboBox中。我選擇了selectedIndex爲0,1,2,3的組,但我希望我的groupID具有相應的組名,這些組名都帶到了客戶端。使用ArrayCollection數據提供程序訪問ComboBox的數據
如何獲得所選組的groupId?
公共職能groupListRH (event:ResultEvent):void {groupsList = event.result as ArrayCollection;} public function show(event):void {selectedItem =(event.target as ComboBox).selectedIndex; Alert.show(selectedItem.toString()。groupId);} 是不是像這樣...我怎麼能得到groupId(確切的ID哪些進入arraycollection通過remoteobject)選定的GroupName ...? –
2009-11-10 18:28:48
使用該代碼向您的問題追加編輯,或創建一個新問題。我不是編譯器,所以我只能在可視化格式化時解析代碼。 ;-) – 2009-11-10 19:05:34