是否可以更改Extjs类的超类?
我想做那样的事情:
Ext.define('MyApp.view.override.MyPanel', {
requires: 'MyApp.view.MyPanel'
}, function() {
MyApp.view.MyPanel.override({
extend: 'MyApp.view.MySuperPanel'
});
});
我无法在Ext.define();
期间直接进行,因为我正在使用Sencha Architect。