extbio
18 Jun 2010, 9:33 AM
Ext version tested:
Ext 3.2.x all buggy, 3.1.0 works.
Browser versions tested against:
FF and Chrome
Description:
A very simple panel with 'column' layout and 2 child panels configed to be of same height (say 500): in Ext 3.2.0 and higher, the 2nd child panel's height config would be ignored.
Test Case:
Ext.onReady(function(){
var v = new Ext.Panel({
layout: 'column',
border: false,
renderTo: 'test',
items: [
{ title:'first', width: 750, height: 500 },
{ title:'2nd', width: 200, height: 500 }
]
});
});
Steps to reproduce the problem:
Run the code
The result that was expected:
Panels 'first' and '2nd' both are 500px tall
The result that occurs instead:
'first' is 500 but '2nd' has body of height 0
I noticed that in the "layout managers" examples in Ext 3.2.0, 3.2.1 and 3.2.2, the rightmost panel was NOT aligned right (in 3.1.0 it was). But http://www.sencha.com/deploy/dev/examples/layout/column.html apparently was aligned right (even though it was using 3.2.1?). Weird.
BTW I found 3.2.x introduced more bugs than even 3.0.0 which was a quite major upgrade. 3.1.0 was much more stable too. These bugs are really holding us back from deploying 3.2.x
Ext 3.2.x all buggy, 3.1.0 works.
Browser versions tested against:
FF and Chrome
Description:
A very simple panel with 'column' layout and 2 child panels configed to be of same height (say 500): in Ext 3.2.0 and higher, the 2nd child panel's height config would be ignored.
Test Case:
Ext.onReady(function(){
var v = new Ext.Panel({
layout: 'column',
border: false,
renderTo: 'test',
items: [
{ title:'first', width: 750, height: 500 },
{ title:'2nd', width: 200, height: 500 }
]
});
});
Steps to reproduce the problem:
Run the code
The result that was expected:
Panels 'first' and '2nd' both are 500px tall
The result that occurs instead:
'first' is 500 but '2nd' has body of height 0
I noticed that in the "layout managers" examples in Ext 3.2.0, 3.2.1 and 3.2.2, the rightmost panel was NOT aligned right (in 3.1.0 it was). But http://www.sencha.com/deploy/dev/examples/layout/column.html apparently was aligned right (even though it was using 3.2.1?). Weird.
BTW I found 3.2.x introduced more bugs than even 3.0.0 which was a quite major upgrade. 3.1.0 was much more stable too. These bugs are really holding us back from deploying 3.2.x