2014-02-25 157 views
0

我有一个下拉列表的实现。所有的值都在那里,但是它不允许用户用鼠标而不是用箭头键选择一个项目。Flex DropDownList不选择项目

<s:FormItem label="Food:"> 

     <s:DropDownList id="dropDownList" 
         dataProvider="{foodList.lastResult.Food_Display_Table.Food_Display_Row}" 
         labelField="Display_Name" 
         /> 
     <s:DropDownList id="TEST"> 
      <s:dataProvider> 
       <mx:ArrayList> 
        <fx:String>Red</fx:String> 
        <fx:String>Orange</fx:String> 
        <fx:String>Yellow</fx:String> 
        <fx:String>Blue</fx:String> 
        <fx:String>Green</fx:String> 
       </mx:ArrayList> 
      </s:dataProvider> 
     </s:DropDownList> 
    </s:FormItem> 
</s:Form> 

的第一个下拉列表是我的实际执行。第二个是测试。我有两个下拉列表相同的问题。

+1

这是一个移动项目吗? (这可能是一个没用的问题,但我在桌面和移动项目上有两种不同的行为) –

回答

相关问题