Michael Schmalle created FLEX-34846:
---------------------------------------
Summary: 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.0.3
Environment: Flash - Working with ui issues.
HTML - Not working, just showing a TextInput.
Reporter: Michael Schmalle
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.4#6332)