[ https://issues.apache.org/jira/browse/FLEX-34846?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Piotr Zarzycki resolved FLEX-34846. ----------------------------------- Resolution: Fixed Fix Version/s: Apache FlexJS 0.8.0 In current nightly build FlexJS 0.8.0 - all issues are fixed. > Simple ComboBox issues > ---------------------- > > Key: FLEX-34846 > URL: https://issues.apache.org/jira/browse/FLEX-34846 > Project: Apache Flex > Issue Type: Bug > Components: FlexJS > Affects Versions: Apache FlexJS 0.5.0 > Environment: Flash - Working with ui issues. > HTML - Not working, just showing a TextInput. > Reporter: Michael Schmalle > Assignee: Piotr Zarzycki > Fix For: Apache FlexJS 0.8.0 > > > The ComboBox rendering needs work; > *Flash* > * Pressing the down arrow should open the popup, it doesn't. > * The selection size of the Text in the renderer is larger then the selected > background of the row. > * The height of the popup does not fit the preferred size fo the 4 items in > the list. > * The popup is placed on top of the textinput, it should be placed below. > *HTML* > * Just shows the Input element. > {code} > <js:ViewBase xmlns:fx="http://ns.adobe.com/mxml/2009" > xmlns:js="library://ns.apache.org/flexjs/basic" > initComplete="initialize()"> > <fx:Script><![CDATA[ > private function initialize():void > { > var dataProvider:Array = ["one", "two", "three", "four"]; > box1.dataProvider = dataProvider; > } > private function onChange():void > { > trace("Change"); > } > ]]></fx:Script> > <js:ComboBox id="box1" change="onChange()"/> > </js:ViewBase> > {code} -- This message was sent by Atlassian JIRA (v6.3.15#6346)