首先,我不确定是否应该覆盖或扩展插件。其次,关注的插件是Ext.pivot.plugin.configurator.Panel
。我想要做的是简单地添加两个属性。这就是我这样做的方式:
Ext.define('Ext.overrides.configurator.Panel',{
override: 'Ext.pivot.plugin.configurator.Panel',
alias: 'widget.pivotconfigpanel_test', // new alias!
resizable: true, // new property
defaultMinWidth: 340 // changed from 250 to 340
});
实际上,我将带有此代码的文件链接到我的应用程序。但是,当我使用新别名pivotconfigpanel_test
而不是pivotconfigpanel
时,我在控制台中收到错误消息:
错误:[Ext.createByAlias]无法识别的别名:plugin.pivotconfigpanel_test
我做错了什么,如何解决?