在下面的工作示例中,只要文本框發生更改,列表的選定索引應該重置爲0。爲什麼SelectedIndex在Flex 4中每隔一段時間都不工作?
但是,由於某種奇怪的原因,其他擊鍵選定的項目消失,然後再出現在隨後的擊鍵。
<?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" minWidth="955" minHeight="600">
<fx:Script>
<![CDATA[
import mx.collections.ArrayList;
import mx.core.UIComponent;
import mx.events.FlexEvent;
import spark.effects.Scale;
import spark.events.TextOperationEvent;
[Bindable]
public var items : ArrayList;
protected function textinput1_changeHandler(event:TextOperationEvent):void
{
items = new ArrayList(input.text.split(" "));
list.selectedIndex = 0;
}
]]>
</fx:Script>
<s:TextInput x="165" y="124" change="textinput1_changeHandler(event)" id="input" text="a few words"/>
<s:List x="165" y="184" width="433" height="291" dataProvider="{items}" id="list"></s:List>
</s:Application>
你嘗試過清除和設置數據提供程序元素,而不只是分配新的每一次擊鍵? – Dan 2010-10-31 18:15:27
是的,這可以解決問題。不清楚爲什麼它應該像給定的代碼一樣行事。 – 2010-11-01 06:07:23