You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by "Mark Kessler (JIRA)" <ji...@apache.org> on 2013/04/18 01:51:16 UTC

[jira] [Resolved] (FLEX-28679) Can't type new custom selected item to replace existing custom selected item

     [ https://issues.apache.org/jira/browse/FLEX-28679?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Kessler resolved FLEX-28679.
---------------------------------

    Resolution: Not A Problem

Tested with the below.  Issue may have existed in previous sdk versions, but does not exist in 4.10.


<?xml version="1.0" encoding="utf-8"?>
<!---
   Test application
-->
<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" > 

    <fx:Script>
        <![CDATA[

        import mx.collections.ArrayCollection;

        [Bindable]
        protected var collection:ArrayCollection = new ArrayCollection(["One","Two","Four","Six","Eight","Nine"]);

        ]]>
    </fx:Script>

    <s:layout>
        <s:VerticalLayout horizontalAlign="center" verticalAlign="middle" gap="0" />
    </s:layout>

    <s:VGroup>
       <s:ComboBox prompt="Pick One" dataProvider="{collection}"/>

        <s:TextInput id="ti"/>
    </s:VGroup>

</s:Application>

                
> Can't type new custom selected item to replace existing custom selected item
> ----------------------------------------------------------------------------
>
>                 Key: FLEX-28679
>                 URL: https://issues.apache.org/jira/browse/FLEX-28679
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: Spark: ComboBox
>    Affects Versions: Adobe Flex SDK Previous
>         Environment: Affected OS(s): All OS Platforms
> Language Found: English
>            Reporter: Adobe JIRA
>            Assignee: Mark Kessler
>
> Steps to reproduce:
> 1. Press in the ComboBox
> 2. Type 4
> 3. Press Enter
> 4. Press Tab
> 5. Press in the ComboBox
> 6. Type 5
> 7. Press Enter
>  
>  Actual Results:
>  ComboBox changes text back to 4
>  
>  Expected Results:
>  ComboBox should keep the text as 5
>  
>  Workaround (if any):
>  none

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira