アプリクラスに次のコードがあります。
switchMainView: function (newView, config) {
if (this.currentView != false) {
Ext.Viewport.remove(this.currentView);
}
this.currentView = Ext.create(newView, config);
Ext.Viewport.animateActiveItem(this.currentView, { type: 'slide', direction: 'right' })
},
任意のコントローラーから呼び出すことができます。ただし、アニメーションは表示されません。何が問題なのですか?