1

这崩溃了:

var grdMakes = Ext.extend(Ext.grid.Panel, {
  constructor: function(paConfig) {
  }
}

这不会:

var grdMakes = Ext.extend(Ext.grid.Panel, {
}

崩溃是:

Uncaught TypeError: Cannot read property 'added' of undefined

为什么添加构造函数会导致它崩溃?我可以使用其他对象来做到这一点,例如:

var pnlMakesMaint = Ext.extend(Ext.Panel, {
    constructor: function(paConfig) {
    }
}  // just fine

编辑

为了澄清我想要做的是,我希望能够实例化一个具有覆盖默认值的选项的对象。

var g = new grdMakes({});  // defaults used

var g = new grdMakes({renderTo: Ext.getBody()}); // renderTo overridden

这适用于除Ext.grid.Panel

另外,我正在使用ExtJS 4

解决方案

事实证明,ExtJS 4 中不推荐使用extend。所以我使用了它并且它有效:

Ext.define('grdMakes', {
     extend: 'Ext.grid.Panel',

     constructor: function(paConfig) {
        var paConfig = Ext.apply(paConfig || {}, {
           columns:   !paConfig.columns ? [{
              header: 'Makes',
              dataIndex: 'make'
           }, {
              header: 'Description',
              dataIndex: 'description'
           }]: paConfig.columns,
           height:     !paConfig.height ? 400 : paConfig.height,
           renderTo:   !paConfig.renderTo ? Ext.getBody() : paConfig.renderTo,
           store:      !paConfig.store ? stoMakes : paConfig.store,
           title:      !paConfig.title ? 'Makes' : paConfig.title,
           width:      !paConfig.width ? 600 : paConfig.width

        });

        grdMakes.superclass.constructor.call(this, paConfig);
     }
}
4

1 回答 1

2

好的。但是您的代码看起来像 ExtJS3。因为 Ext.extend 在 ExtJS4 版本中已被弃用。您可以使用定义而不是扩展。作为参考,您可以查看以下网址:

http://docs.sencha.com/ext-js/4-0/#/api/Ext-method-extend

Afaik,对于覆盖默认选项,这不是完美的方式。您需要使用 Ext.override。

例如:

Ext.override(Ext.grid.Panel,{
   lockable : true
});

像上面一样,您必须覆盖默认选项。

于 2011-08-09T15:17:32.730 回答