Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Cannot Reproduce
-
Apache FlexJS 0.6.0, Apache FlexJS 0.7.0, Apache FlexJS 0.8.0
-
None
Description
Test case:
<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:js="library://ns.apache.org/flexjs/basic">
<js:valuesImpl>
<js:SimpleCSSValuesImpl />
</js:valuesImpl>
<js:initialView>
<js:View>
<js:beads>
<!-- Without this bead the DropDownList doesn't work -->
<js:VerticalLayout />
</js:beads>
<js:DropDownList>
<js:dataProvider>
<fx:Array>
<fx:String>One</fx:String>
<fx:String>Two</fx:String>
<fx:String>Three</fx:String>
</fx:Array>
</js:dataProvider>
</js:DropDownList>
</js:View>
</js:initialView>
</js:Application>