我正在尝试使用 .setActiveItem 在 Sencha 2.1 MVC 应用程序的列表视图(Ext.dataview.List)中显示项目的详细信息。问题是我无法获得加载数据的详细视图。
我尝试了许多不同的方法来获取详细视图以显示数据,包括 setData、setRecord 和 Update(有关我最近的一些尝试,请参见下文)。
我在论坛、stackoverflow 和谷歌搜索时得到的大多数结果都是针对不使用 MVC 模型的 sencha 应用程序。(哦,使用 .push 可以正常工作,但由于其他原因,我正在远离导航视图)。
从我的控制器:
showDetail: function(list, record) {
/*this.getMain().push({
xtype: 'labdetail',
title: record.fullName(),
data: record.getData()
});*/
//The code above works, but only as long as I stay with navigation view...
console.log("showDetail");
//Ext.getCmp('labdetail').update(record.data);
//LabDetail.update(record.data);
//Ext.fly('labdetail').setData(record.data);
//Ext.getCmp('labdetail').setData(record.data);
//Ext.component('Labblistan.view.LabDetail').destroy();
//Ext.getCmp('Labblistan.view.LabDetail').destroy();
//Ext.fly('labdetail').destroy();
//var DetailView = Ext.create('Labblistan.view.LabDetail'); //If I create the view the console complains I need to destroy previous views with the same ID, hence the different destroy() approaches above
//DetailView.setRecord(record);
Ext.getCmp('mainpanel').setActiveItem('labdetail'); //This navigates to the right view, but it's empty
},
我的详细视图:
Ext.define('Labblistan.view.LabDetail', {
extend: 'Ext.Panel',
xtype: 'labdetail',
id: 'labdetail',
config: {
title: '{Analysis}',
styleHtmlContent: true,
scrollable: 'vertical',
fullscreen: true,
tpl: [
'<div style=position:absolute;top:50px;><p>Info about {Analysis}</p><p>{Comment}</p></div>'
],
},
});