如果我使用FormPanel设置标题,则Internet Explorer会关闭,但这适用于Chrome。谁能告诉我为什么会这样?这是完整的代码:
Ext.onReady(function(){
alert('1112233');
Ext.tip.QuickTipManager.init();
var main = Ext.create('Ext.panel.Panel', {
id : "main",
padding: '0 0 0 50',
height: 550,
width: 800,
layout: {
type: 'table',
columns: 1
},
renderTo:Ext.getBody(),
items: [
{
xtype: 'form',
height: 471,
width: 632,
title: 'My Form', //【Here Here !If do not set Title it's all right】
items: [
{
xtype: 'datefield'
}
]
}
]
});
});