0

控制器

if(rec.data.category == "TestLinksList") {

    /* Assign new store before loading view */  

    /* ----- Start: Code not working ----- */       
    var testStore = Ext.getStore('linksStore');
    testStore.load();
    /* ----- End: Code not working ----- */     

    };

this.getHome().push({
    xtype : rec.data.category,
    // Assign testStore here
}); 

上述函数是在点击列表项时调用的。如果类别是“TestLinksList”,那么我必须分配一个新商店并使用“push”方法显示和显示视图。

谁能告诉我如何为控制器中的视图分配商店。

4

1 回答 1

1

你可以这样做(假设你的 xtype extends Ext.List):

this.getHome().push({ xtype: rec.data.category, store: testStore });

于 2012-08-22T12:22:56.267 回答