-
5 Nov 2012 8:38 AM #1
ComboBox list grows with mouse over in IE9
ComboBox list grows with mouse over in IE9
REQUIRED INFORMATION Ext version tested:
- Ext 4.1.3
- IE9
- For a ComboBox where one of the options contains a single word which is wider than the ComboBox, when expanding the options list, hovering over each option causes the list to grow in size. I've only seen this behaviour in IE9.
- Either use the attached code snippet or modify the inline example for the Ext.form.field.ComboBox documentation to contain a word wider than the field, eg. 'abcdefghijklmnopqrstuvwxyz'.
- Open the example in IE9
- Click on the trigger to expand the options list
- Hover over the available options
- The options list should remain the same height.
- The option list grows in height as each option is hovered over (see screenshot).
Test Case:HELPFUL INFORMATION Screenshot or Video: See this URL for live test case: http:// Debugging already done:Code:// The data store containing the list of states var states = Ext.create('Ext.data.Store', { fields: ['abbr', 'name'], data : [ {"abbr":"AL", "name":"abcdefghijklmnopqrstuvwxyz"}, {"abbr":"AK", "name":"Alaska"}, {"abbr":"AZ", "name":"Arizona"} //... ] }); // Create the combo box, attached to the states data store Ext.create('Ext.form.ComboBox', { fieldLabel: 'Choose State', store: states, queryMode: 'local', displayField: 'name', valueField: 'abbr', renderTo: Ext.getBody() });- none
- not provided
- only default ext-all.css
- Windows 7
-
5 Nov 2012 1:05 PM #2
Thanks for the test case, we already have a bug open for this one: EXTJSIV-7499
Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
-
5 Nov 2012 1:11 PM #3
Thanks for the quick response. Any idea in which release this is likely to be resolved?
-
29 Apr 2013 6:30 AM #4
-
19 May 2013 10:30 PM #5
Still this bug is there in extjs/4.2.0
Still this bug is there in extjs/4.2.0
I also facing the same issue all over my application.
combobox.jpg
This issue duplicates another issue.


Reply With Quote