这崩溃了:
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);
}
}