在数据视图组件中,我可以插入一个数据项,但是我如何插入搜索器?,就像在列表组件中一样
数据视图和列表直接绑定到存储 ( Ext.data.Store
)。因此,该商店发生的任何情况都将反映在视图中。
因此,您需要做的是过滤商店。您可以使用商店中的filter
或filterBy
方法来执行此操作。
详细信息: http://docs.sencha.com/touch/2-0/#!/api/Ext.data.Store-method-filter
例
var store = Ext.create('Ext.data.Store', {
fields: ['text'],
data: [
{ text: 'one'},
{ text: 'two'},
{ text: 'three'}
]
});
store.filter('text', 'one'); // will only show the one record