-
5 Nov 2007 1:09 PM #11Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- Frederick MD, NYC, DC
- Posts
- 16,167
- Vote Rating
- 29
Modify your CSS per this thread and let's see if that fixes the issue:
http://extjs.com/forum/showthread.php?p=80794#post80794
To fix the IE Grid run-away issue
PHP Code:Changed EXTJS Line #337 from:
.x-grid3-header-offset{padding-left:1px;width:10000px;}
to
.x-grid3-header-offset{padding-left:1px;width:auto;}

Jay Garcia @ModusJesus || Modus Create co-founder
Ext JS in Action author
Sencha Touch in Action author
Get in touch for Ext JS & Sencha Touch Touch Training
We are also working on Video-based Sencha Touch training: Check it out here.
-
5 Nov 2007 1:23 PM #12
-
5 Nov 2007 1:42 PM #13Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- Frederick MD, NYC, DC
- Posts
- 16,167
- Vote Rating
- 29
nothing that i could tell. everything works great in both IE6 and FX2.x for winders.
just be aware that grids do not resize properly (yet) and their header text will not appear rendered until the window.resize event is fired (for some reason).
Jay Garcia @ModusJesus || Modus Create co-founder
Ext JS in Action author
Sencha Touch in Action author
Get in touch for Ext JS & Sencha Touch Touch Training
We are also working on Video-based Sencha Touch training: Check it out here.
-
5 Nov 2007 2:19 PM #14
The change fixed the grid being 10* the size of the viewport, and also made the header the same size as the columns. With some playing aorund this also only worked in combination when the grid was in a container, otherwise the body of the table would still overflow.Code:Changed EXTJS Line #337 from: .x-grid3-header-offset{padding-left:1px;width:10000px;} to .x-grid3-header-offset{padding-left:1px;width:auto;}
Now the issue is that the grid pushes out it's container and expands to it's full size instead of scrolling inside the grid:Code:var container = new Ext.Container({applyTo: element_id, layout: 'fit', items: this.grid});
In firefox/safari everything is as normalCode:|CONTAINER| (the grid extends the width of the container) |-GRID---------| instead of: |CONTAINER| |--GRID---| (with scrollbars on the grid)
-
5 Nov 2007 2:40 PM #15
I've found an issue with
If you have a grid with a large number of columns, the later columns start becoming gradually more and more out of sync (to the left side) of the column headers. Changing it back to width: 10000px fixes that issue...Code:Changed EXTJS Line #337 from: .x-grid3-header-offset{padding-left:1px;width:10000px;} to .x-grid3-header-offset{padding-left:1px;width:auto;}
but then back to the problem in ie6.. sigh
-
5 Nov 2007 3:07 PM #16Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- Frederick MD, NYC, DC
- Posts
- 16,167
- Vote Rating
- 29
^^ thanks for that


Jay Garcia @ModusJesus || Modus Create co-founder
Ext JS in Action author
Sencha Touch in Action author
Get in touch for Ext JS & Sencha Touch Touch Training
We are also working on Video-based Sencha Touch training: Check it out here.
-
6 Nov 2007 12:50 AM #17
What layout are you guys using for the parent container? I had this bug, and was using tablelayout, I changed it to borderlayout and the grid turned out fine. On the other hand my formpanel on top of the grid doesn't render as it should. Though if I add a comment <!-- --> on top of the html doc, as statet the form will render correctly if I leave out the margins config. I'll check around if this bug is reported before.
-
7 Nov 2007 8:07 PM #18
I was just using a gridpanel, then I tried with a container and fit, and i've tried with borderlayout, but none of them fix the ie6 10x issue.
-
7 Nov 2007 8:14 PM #19Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- Frederick MD, NYC, DC
- Posts
- 16,167
- Vote Rating
- 29
A contractor that is working with us has provided a work-around/override. i'll post tomorrow.

Jay Garcia @ModusJesus || Modus Create co-founder
Ext JS in Action author
Sencha Touch in Action author
Get in touch for Ext JS & Sencha Touch Touch Training
We are also working on Video-based Sencha Touch training: Check it out here.
-
8 Nov 2007 4:46 PM #20
Awesome!


Reply With Quote

