我在我的应用程序中创建了一个DataView:
Ext.define('MyApp.view.Details', {
extend: 'Ext.dataview.DataView',
xtype: 'myapp-details',
config: {
itemTpl : '{title} + {description}'
}
});
在我的控制器中,我做了类似的事情:
me.getMain().push({
xtype: 'myapp-details',
title: record.data.title,
record: record
});
如何将单个记录添加到数据视图?