aedos
30 Dec 2009, 11:10 AM
This is a blocker for us. The content of many of pages disappears in FF, after upgrade from 3.0 to 3.1. Works fine in IE.
I can't yet pinpoint the problem, but it seems related to multi-column forms (form layout under table layout) plus a few other minor factors.
Here's a much simplified page that can reproduce the problem. It looks fine in IE, but none of the textfield shows up in FF:
<script type="text/javascript">
Ext.onReady(function() {
var twoCols = {
layout: 'table',
layoutConfig: {'columns': 2},
defaults: {layout:'form', border:false, defaultType:'textfield'},
items: [
{
items:[
{ fieldLabel: 'First Name', value: 'John' },
{ fieldLabel: 'Last Name', value: 'Smith' }
]
},
{
items: { fieldLabel: 'Info' }
}
]
}
new Ext.Viewport({
layout: 'anchor',
items:[
twoCols,
{ html:'blah' }
]
});
})
</script>
I can't yet pinpoint the problem, but it seems related to multi-column forms (form layout under table layout) plus a few other minor factors.
Here's a much simplified page that can reproduce the problem. It looks fine in IE, but none of the textfield shows up in FF:
<script type="text/javascript">
Ext.onReady(function() {
var twoCols = {
layout: 'table',
layoutConfig: {'columns': 2},
defaults: {layout:'form', border:false, defaultType:'textfield'},
items: [
{
items:[
{ fieldLabel: 'First Name', value: 'John' },
{ fieldLabel: 'Last Name', value: 'Smith' }
]
},
{
items: { fieldLabel: 'Info' }
}
]
}
new Ext.Viewport({
layout: 'anchor',
items:[
twoCols,
{ html:'blah' }
]
});
})
</script>