Thank you for reporting this bug. We will make it our priority to review this report.
  1. #1
    Sencha User
    Join Date
    Jul 2007
    Posts
    8
    Vote Rating
    0
    GodKnow is on a distinguished road

      0  

    Default [FIXED]Combo Boxes

    [FIXED]Combo Boxes


    Click the Combo box scroll bar, the list will be hidden.

  2. #2
    Sencha - Services Team tobiu's Avatar
    Join Date
    May 2007
    Location
    Munich (Germany)
    Posts
    2,292
    Vote Rating
    6
    tobiu will become famous soon enough

      0  

    Default


    in chrome this works fine, in firefox not.

    also (and this seems related): when the mouse-pointer is over the list, the mousewheel works, if you use the wheel with the pointer above the scrollbar, the view hides. also ff only.


    best regards
    tobiu
    Best regards
    Tobias Uhlig
    __________


    Sencha Inc
    Tobias Uhlig, Solutions Engineer

    Private Projects:

    S-CIRCLES Social Network Engine
    Commercial Theming for Ext JS 3 & 4

  3. #3
    Sencha User
    Join Date
    Oct 2010
    Posts
    159
    Vote Rating
    0
    mdavis6890 is on a distinguished road

      0  

    Default


    I have the same combo used in two places.

    This one works just fine:
    PHP Code:
    this.tbar = [{
                
    xtype'IDB.selectbox.Customer',
                
    listeners : {
                    
    scope this,
                    
    select : function(combodatatabpanel) {
                        
    //this.getServicesTab().setCustomer(record.get('customer_id'));
                        
    this.getItemsTab().setCustomer(data[0].get('customer_id'));
                    }
                }
            },{
                    
    fieldLabel'Datacenter',
                    
    xtype 'IDB.selectbox.Site',
                    
    name 'site_code',
                    
    itemId 'siteCombo',
                    
    listeners : {
                            
    click : function() {
                                    
    console.log(this);
                            }
                    }
            }]; 
    This one doesn't:
    PHP Code:
    {
                
    xtype 'fieldset',
                
    fieldLabel 'test',
                
    frame true,
                
    collapsibletrue,
                
    collapsed false,
                
    title 'Location',
                
    itemId 'locationFieldset',
                
    items : [{
                    
    fieldLabel'Datacenter',
                    
    xtype 'IDB.selectbox.Site',
                    
    name 'site_code',
                    
    itemId 'siteCombo',
                    
    listeners : {
                        
    click : function() {
                            
    console.log(this);
                        }
                    }
                }]
            } 

  4. #4
    Sencha - Ext JS Dev Team evant's Avatar
    Join Date
    Apr 2007
    Location
    Sydney, Australia
    Posts
    15,080
    Vote Rating
    97
    evant is a splendid one to behold evant is a splendid one to behold evant is a splendid one to behold evant is a splendid one to behold evant is a splendid one to behold evant is a splendid one to behold evant is a splendid one to behold

      0  
    Evan Trimboli
    Sencha Developer
    Twitter - @evantrimboli
    Don't be afraid of the source code!

Similar Threads

  1. valueField in combo boxes
    By Nawabu in forum Ext 3.x: Help & Discussion
    Replies: 1
    Last Post: 23 Oct 2009, 4:36 AM
  2. Replies: 5
    Last Post: 4 Jun 2009, 2:43 PM
  3. Combo boxes with different store
    By simon in forum Ext 2.x: Help & Discussion
    Replies: 2
    Last Post: 19 Apr 2009, 11:24 PM
  4. [2.1svn2134][FIXED] Combo boxes breaking with hiddenValue
    By keithpitt in forum Ext 2.x: Bugs
    Replies: 7
    Last Post: 11 Jul 2008, 11:59 AM
  5. Combo Boxes
    By Zakaroonikov in forum Ext.nd for Notes/Domino
    Replies: 3
    Last Post: 8 Oct 2007, 12:58 PM