J.C. Bize
17 Feb 2010, 9:43 AM
Apologies if this has already been discussed, I couldn't find anything with the search...
Ext version tested:
Ext JS 3.0.3
Ext JS 3.1.1
Adapter used:
Ext
Browser versions tested against:
Firefox 3.6 (incorrect)
IE 8.0.7600.16385 (correct)
Chrome 5.0.322.2 dev (correct)
Operating System:
Windows 7 x64
Description:
In Firefox, clicking on the emptyText section of the ComboBox does not cause the list to drop down as expected. Both IE and Chrome exhibit the correct behavior.
In all three browsers, the list drops down when clicking on the "clear" section of the ComboBox. This is the expected behavior.
Test Case:
var combo = new Ext.form.ComboBox({
renderTo: document.body,
mode: 'local',
store: new Ext.data.ArrayStore({
id: 0,
fields: [
'myId', // numeric value is the key
'displayText'
],
data: [[1, 'item1'], [2, 'item2']] // data is local
}),
valueField: 'myId',
displayField: 'displayText',
triggerAction: 'all',
emptyText: 'Select one...',
editable: false
});
Ext version tested:
Ext JS 3.0.3
Ext JS 3.1.1
Adapter used:
Ext
Browser versions tested against:
Firefox 3.6 (incorrect)
IE 8.0.7600.16385 (correct)
Chrome 5.0.322.2 dev (correct)
Operating System:
Windows 7 x64
Description:
In Firefox, clicking on the emptyText section of the ComboBox does not cause the list to drop down as expected. Both IE and Chrome exhibit the correct behavior.
In all three browsers, the list drops down when clicking on the "clear" section of the ComboBox. This is the expected behavior.
Test Case:
var combo = new Ext.form.ComboBox({
renderTo: document.body,
mode: 'local',
store: new Ext.data.ArrayStore({
id: 0,
fields: [
'myId', // numeric value is the key
'displayText'
],
data: [[1, 'item1'], [2, 'item2']] // data is local
}),
valueField: 'myId',
displayField: 'displayText',
triggerAction: 'all',
emptyText: 'Select one...',
editable: false
});