Thank you for reporting this bug. We will make it our priority to review this report.
  1. #1
    Sencha User
    Join Date
    May 2009
    Posts
    15
    Vote Rating
    0
    Ezor is on a distinguished road

      0  

    Default [FIXED] [2.0-RC1] ComboBox not selecting the good item

    [FIXED] [2.0-RC1] ComboBox not selecting the good item


    Hello,

    As you can see on the following print-screen, when i expand the popup of a combobox, the selected item in the list is not the item corresponding to the rawvalue (ADC) but the next item (ADE).

    Here is a snippet of the code :

    Code:
    SimpleComboBox<String> comboUO = new SimpleComboBox<String>();
    comboUO.setEditable(false);	    
    comboUO.setWidth(50);
    comboUO.setTypeAhead(true);
    comboUO.add("ACO");
    comboUO.add("ADA");
    comboUO.add("ADC");
    comboUO.add("ADE");
    comboUO.add("ADI");
    comboUO.add("ATM");
    comboUO.add("DEN");
    I'm using safari, but same problem with IE & Firefox
    Attached Images

  2. #2
    Software Architect
    Join Date
    Sep 2007
    Posts
    13,717
    Vote Rating
    107
    sven is just really nice sven is just really nice sven is just really nice sven is just really nice

      0  

    Default


    Fixed in SVN.

  3. #3
    Sencha User
    Join Date
    May 2009
    Posts
    15
    Vote Rating
    0
    Ezor is on a distinguished road

      0  

    Default


    Thanks