-
16 Feb 2011 12:57 PM #1
[FIXED]Combo Boxes
[FIXED]Combo Boxes
Click the Combo box scroll bar, the list will be hidden.
-
16 Feb 2011 1:20 PM #2
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
-
18 Feb 2011 9:39 AM #3
I have the same combo used in two places.
This one works just fine:
This one doesn't:PHP Code:this.tbar = [{
xtype: 'IDB.selectbox.Customer',
listeners : {
scope : this,
select : function(combo, data, tabpanel) {
//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);
}
}
}];
PHP Code:{
xtype : 'fieldset',
fieldLabel : 'test',
frame : true,
collapsible: true,
collapsed : false,
title : 'Location',
itemId : 'locationFieldset',
items : [{
fieldLabel: 'Datacenter',
xtype : 'IDB.selectbox.Site',
name : 'site_code',
itemId : 'siteCombo',
listeners : {
click : function() {
console.log(this);
}
}
}]
}
-
7 Mar 2011 3:24 AM #4Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
valueField in combo boxes
By Nawabu in forum Ext 3.x: Help & DiscussionReplies: 1Last Post: 23 Oct 2009, 4:36 AM -
[FIXED][2.2/3.0] Combo boxes rendered in hidden containers
By stever in forum Ext 3.x: BugsReplies: 5Last Post: 4 Jun 2009, 2:43 PM -
Combo boxes with different store
By simon in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 19 Apr 2009, 11:24 PM -
[2.1svn2134][FIXED] Combo boxes breaking with hiddenValue
By keithpitt in forum Ext 2.x: BugsReplies: 7Last Post: 11 Jul 2008, 11:59 AM -
Combo Boxes
By Zakaroonikov in forum Ext.nd for Notes/DominoReplies: 3Last Post: 8 Oct 2007, 12:58 PM


Reply With Quote