是否可以更改 Extjs 类的超类?
我想做这样的事情:
Ext.define('MyApp.view.override.MyPanel', {
requires: 'MyApp.view.MyPanel'
}, function() {
MyApp.view.MyPanel.override({
extend: 'MyApp.view.MySuperPanel'
});
});
Ext.define();
因为我使用的是 Sencha Architect,所以我不能直接这样做。