为什么extjs中的网格面板处理程序正在执行而没有被调用?

时间:2012-01-06 09:32:16

标签: extjs extjs4 handler

问题

你好不方便的是,当我加载我的应用程序时,处理程序自动执行,这是网格的代码:

   Ext.define('masterDataGrid', {

        extend : 'Ext.grid.Panel',
        windowItems : null,
        addWin : null,


        initComponent : function() {
            var me = this;
            Ext.applyIf(me, {
                        tbar : [{
                                    text : 'Add',
                                    handler :me.onAdd,
                                    scope : me
                                }, '-', {
                                    text : 'Delete',
                                    handler : me.onDelete,
                                    scope : me
                                }, '-']
                    });


            me.callParent(arguments);
        },


        getAddWindow : function() {
            if (!this.addWin) {
                this.addWin = new windowPop({
                            buttons : [{
                                        text : 'i_OK',
                                        handler : this.winOk()
                                    }, {
                                        text : 'i_Cancel',
                                        handler : this.winCancel()
                                    }]
                        });
                this.addWin.add(this.windowItems);
            }
            return this.addWin;
        },


        onAdd : function() {
        var addWindow = this.getAddWindow();
        addWindow.show();
        },


    });

我将这个mastergrid形式称为另一个从它扩展的类,这是代码:

 Ext.define('confEmailEmail', {
        extend : 'masterDataGrid',
        initComponent : function() {
            var me = this;
            me.columns = [{
                        id : 'code',
                        header : 'code',
                        dataIndex : 'code',
                        width : 220
                    }, {
                        header : 'description',
                        dataIndex : 'description',
                        width : 130
                    }, {
                        header : 'multiply',
                        dataIndex : 'multiply',
                        width : 70,
                        align : 'right'
                    }, {
                        header : 'cyrcletime',
                        dataIndex : 'cycletime',
                        width : 95
                    }];


            me.windowItems = [{
                        xtype : 'combobox',
                        id : 'cb_input',
                        fieldLabel : 'i_Input',
                        margin : '5 0 0 5',
                        style : 'font-weight:bold',
                        labelWidth : 120
                    }, {
                        xtype : 'checkbox',
                        id : 'chk_invert',
                        fieldLabel : 'i_Invert',
                        margin : '5 0 0 5',
                        style : 'font-weight:bold',
                        labelWidth : 120
                    }, {
                        xtype : 'combobox',
                        id : 'cb_activeBy',
                        fieldLabel : 'i_Active by',
                        margin : '5 0 0 5',
                        style : 'font-weight:bold',
                        labelWidth : 120
                    }];


            me.callParent(arguments);


        }
    });

当我点击添加按钮时它应该打开窗口添加一个新行,但是每次我执行整个应用程序时它都会显示。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我明白了,因为onAdd是一个Ext.grid.Panel的方法,然后当它试图加载应用程序时它访问我的方法onAdd,因为他认为我已经覆盖了Ext.grid的方法onAdd .Panel。