-
17 Jul 2012 8:15 PM #1
Accordion/ treepanel autoscroll issue in IE10, IE9 (& IE8 Compatability)
Accordion/ treepanel autoscroll issue in IE10, IE9 (& IE8 Compatability)
REQUIRED INFORMATION
Ext version tested:
- Ext 3.4.0
- Firefox 13.0.1
- Chrome 20.0.1132
- IE 9.0.8112
- In IE9, Mouseover of the tree panel nodes cause the accordion panel to unexpectedly grow vertically.
- Eventually the lower accordion panels disappear off the screen
- This does not occur in Chrome/ Firefox
- IE8 compatibility mode results in an an unexpected vertical scroll bar
- Run the example code below in IE9
- Mouseover the tree panel node
- Observe the height of the accordion panel as it grows in response to mouseover
The result that was expected:
- The accordion panel height should not change
- The accordion panel height unexpectedly grows
- Eventually the lower accordion panels disappear off the screen
- An unexpected vertical scroll bar can also be seen in IE8 compatability mode (see attached image)
Test Case:
Code:<!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-3.4.0/resources/css/ext-all.css"/> <script type="text/javascript" src="http://extjs.cachefly.net/ext-3.4.0/adapter/ext/ext-base.js"></script> <script type="text/javascript" src="http://extjs.cachefly.net/ext-3.4.0/ext-all.js"></script> </head> <body> <script type="text/javascript"> Ext.onReady(function() { var treePanel1 = new Ext.tree.TreePanel({ layout: 'fit', rootVisible : false, autoScroll : true, title:'Title 1', root : { children : [{ text : 'test test test test test test test test test test test test test test ', leaf : true, checked : false },{ text : 'test test test test test test test test test test test test test test ', leaf : true, checked : false }] } }) var treePanel2 = new Ext.tree.TreePanel({ layout: 'fit', rootVisible : false, autoScroll : true, title:'Title 2', root : { children : [{ text : 'test test test test test test test test test test test test test test ', leaf : true, checked : false },{ text : 'test test test test test test test test test test test test test test ', leaf : true, checked : false }] } }) var accordionLayout = new Ext.Panel({ layoutConfig : { fill : false }, layout : 'accordion', items : [treePanel1,treePanel2] }); var borderLayout = new Ext.Panel({ layout : 'border', items : [{ layout : 'fit', width : 250, region : 'west', items : [accordionLayout] }, { region : 'center', items : [{ html : 'test' }] }] }); var win = new Ext.Viewport({ title : 'Layout Window', layout : 'fit', items : [borderLayout] }); win.show(this); }); </script> </body> </html>
HELPFUL INFORMATION
Screenshot or Video:
- Attached image: AccordionPanelScrollBarsIE9.jpg
- Image displays Chrome, Firefox, IE9, IE9 (with IE8 compatibility)
- only default ext-all.css
- Windows 7 (32)
Last edited by dee1; 17 Apr 2013 at 5:11 PM. Reason: Additional probs for IE10
-
18 Jul 2012 5:39 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,637
- Vote Rating
- 435
Thanks for the report.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
24 Sep 2012 1:06 AM #3
Similar issue on select box also
Similar issue on select box also
I have a selectbox with horizontal scroll. On hover (mouse over) of the selectable item list, the height is growing by one row height, on every onmouseenter. This is reproducible at all times on IE 9.0.8112.16421
I believe this would be similar issue. How would I get notified on any updates for this?
Thanks
-
12 Apr 2013 5:41 PM #4
3.4.1.1 Release
3.4.1.1 Release
Thanks for the 3.4.1.1 IE10 release - unfortunately its introduced a new bug for IE10.
For IE9:
3.4.1.1 doesn't solve this bug (same as above).
For IE10:
The bug (discussed above) didn't happen with 3.4.0 but now with 3.4.1.1 a new bug seems to be introduced with a 3.4.1.1 vertical scroll bar that shouldn't be there.
If anyone can give some direction on where to start fixing these bugs, your help would be very welcomed.
You found a bug! We've classified it as
EXTJSIII-73
.
We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.


Reply With Quote