-
18 Jan 2008 12:52 PM #11
Thanks for the patch as provided above. We will take a look at this issue and try to resolve this in SVN.
Aaron Conran
@aconran
Sencha Architect Development Team
-
24 Jan 2008 1:04 AM #12
-
29 Jan 2008 2:17 PM #13
I updated to 2.0.1 release, but this bug persists. Is this bug being pursued in a scheduled manner?
-
29 Jan 2008 11:55 PM #14
Upgrade to 2.0.1
Upgrade to 2.0.1
Also for me. The bug is still open. I continue to use condor's patch.
-
8 Feb 2008 5:58 AM #15
One question about this fix - how to implement it? I thought it would work if is just load it right after the base lib files - but it doesnt
Can someone help or give a hint?
Thanks
-
8 Feb 2008 6:33 AM #16
You have to override the original method.
For example:
PHP Code:Ext.extend(Ext.grid.MyGridView, Ext.grid.GridView, {
layout : function(){
if(!this.mainBody){
return;
}
....
}
});
-
8 Feb 2008 6:53 AM #17
-
9 Feb 2008 3:52 AM #18
Thanks for the answer
I just tried doing it that way but it didnt work (but it seems to be my fault - just checking what is going wrong ^^).
-
27 Mar 2008 12:22 PM #19
Thanks very much for the fix, Condor!
For the record, this bug seems to still be present in v2.0.2.
-
11 Apr 2008 8:41 AM #20
Thanks for the fix.
but i have a issue with resizing my page.
i put my grid inside a viewport (center) i tried this code:
this code works fine with FF 2.0 and Safari 3.0PHP Code:myViewPort.on('resize', function() {
Ext.getCmp('myGrid').view.refresh();
})
but doesn't work with IE7 when resizing the page!???


Reply With Quote

