在sencha touch 2.4.1中将单个记录添加到数据视图

时间:2015-05-28 14:07:27

标签: extjs touch store record dataview

我在我的应用程序中创建了一个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
});

如何将单个记录添加到数据视图?

0 个答案:

没有答案