0
FormPanelでタイトルを設定した場合、Internet Explorerはシャットダウンしますが、これはChromeで正常に動作します。なぜこのようなことが起こるのか教えてください。以下は完全なコードです:ExtJs4 BUG? FormPanelについて
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'
}
]
}
]
});
});