一个ExtJs4 BUG?关于FormPanel

时间:2012-01-07 03:01:59

标签: javascript internet-explorer extjs4

如果我使用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'
                    }
                ]
            }
        ]
    });
});

1 个答案:

答案 0 :(得分:1)

您的代码在IE8和IE9中运行。它也适用于IE7。

请参阅fiddle

你错过了其他一些东西。可能是拼写错误!