繁体   English   中英

Sencha:未捕获的TypeError:对象函数(){h.apply(this,arguments)}没有方法'setActiveItem'

[英]Sencha : Uncaught TypeError: Object function (){h.apply(this,arguments)} has no method 'setActiveItem'

我在我的应用程序中使用以下代码作为xtype。 我的列表项以我想要的方式出现,但是当我单击一个项时,每次单击应该加载带有数据的新页面的项时,都会出现此错误:Uncaught TypeError:Object function(){h.apply(this ,arguments)}没有方法'setActiveItem'。 关于如何解决的任何想法? 引用的项目行在代码中被注释。

这是我的代码:

var AppsBack = new Ext.Toolbar({
dock: 'top',
items: [{
    text: 'back',
    ui: 'back',
    handler: function(){
        Home.setActiveItem('home'); //Here is the second problem
    }
}]
});

var AppsDetails = new Ext.Panel({
id: "appsdetails",
tpl: "{game}",
dockedItems: [AppsBack]
});

var AppsList = new Ext.List({
id: "appslist",
store: AppsStore,
layout: 'card',
emptyText: "No game found",
itemTpl: "{game}",
listeners: {
    itemtap: function(view, index, item, e) {
        var rec = view.getStore().getAt(index);
        AppsDetails.update(rec.data);
        AppsBack.setTitle(rec.data.game);
        Home.setActiveItem('appsdetails') //Here is the first problem
    }
}
});

var AppsListWrapper = new Ext.Panel({
id: "appslistwrapper",
layout: 'card',
items: [AppsList],
dockedItems: []
});

var Home = Ext.extend(Ext.Panel, {
id: "home",
iconCls: 'home', 
title: 'Home',
fullscreen: true,
layout: 'card',
cardSwitchAnimation: 'slide',

initComponent: function() {
    Ext.apply(this, {
        items: [AppsListWrapper, AppsDetails]
    });
    Home.superclass.initComponent.apply(this,arguments)
}
});
Ext.reg('appsList', Home);

谢谢你的帮助


经过几次操作,我发现遇到这种麻烦的唯一原因是因为我试图扩展面板。 换句话说,如果我使用Ext.extend(Ext.Panel)的新Ext.Panel接口,{...一切正常,除非在这种情况下我不能使用xtype。有什么想法吗?

我想到了!!! 我的解决方案包括为新的扩展类提供尽可能少的参数。 因此,我将home扩展类划分为两个对象,如下所示:

var Home = new Ext.Panel({
id: "home",
layout: 'card',
cardSwitchAnimation: 'slide',
items: [AppsListWrapper, AppsDetails]
});

var HomeTab = Ext.extend(Ext.Panel, {
iconCls: 'home',
title: 'Home',
layout: 'card',
initComponent: function() {
    Ext.apply(this,{
        items: [Home]
    }); 
    HomeTab.superclass.initComponent.apply(this,arguments);
}
});
Ext.reg('home', HomeTab);

不要问我怎么来,我将无法回答。 我只是按照我的直觉;)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM