doLAyout在ExtJs中不能工作两次

时间:2011-07-20 12:43:12

标签: layout extjs

首先这个有效:

win.remove(formLogin, true);
win.add(changepswform);
win.doLayout();

然后这个不起作用:

win.add(changepswform);
win.remove(formLogin, true);
win.doLayout();

我收到此错误:

uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLDivElement.insertBefore]" nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)" location: "JS frame :: http://app.localhost.com/ext-4.0.2/ext-all.js :: <TOP_LEVEL> :: line 15" data: no]
[Break On This Error] (function(){var e=this,a=Object.protot...ate("Ext.XTemplate",j,g)}return j}}); 

这是谁的错?矿?或者ExtJs有错误?

注意:

var win = Ext.create('Ext.Window', {
    title: 'Asistan Web: Online Teknik Servis Yazılımı',
    width: 350,
    minWidth: 350,
    height: 240,
        closable: false,
    modal: true,
    bodyStyle: 'padding:10px;',
        items: [formLogin],
    bbar: Ext.create('Ext.ux.StatusBar', {
        id: 'win-statusbar',
        defaultText: 'Giriş',
        items: [ 
        {
            xtype:'splitbutton',
            text:'Şifre işlemleri',
            menuAlign: 'br-tr?',
            menu: Ext.create('Ext.menu.Menu', {
                items: [{text: LANG.LOGIN_FORGOT_PASS,              handler : 
                    function(){
                        if(confirm(LANG.LOGIN_MAIL_CONFIRM))doformTest(1);
                        Ext.getCmp('win-statusbar').setText('');
                    }}, {text: LANG.LOGIN_CHANGE_PASS, handler : function(){doformTest(2);}}]
            })
        }]
    })
});

2 个答案:

答案 0 :(得分:1)

看起来您正在尝试删除第一个块中已删除的第二个块中的组件。或者你没有顺序运行这两个脚本?

答案 1 :(得分:1)

在.remove方法上使用 true 强制进行垃圾回收,从而完全删除变量AFAIK。

编辑:找到解决方案,How can I replace the content of a panel with new content? STILL ,如果你想重新使用(让我们说多次交换)你的面板,你必须使用 false on .remove()