リスト+ボタンを表示するためのメインのJavaScriptファイルとして、次のコードがあります。それはすべて適切に表示され、アイテムをストアに追加するなどのすべてがうまく機能しますが、名前が特定の値に等しい値のみをリストに表示する簡単な方法はありますか?
Ext.define("MyProject.view.Main", {
extend: 'Ext.NavigationView',
requires: ['Ext.NavigationView', 'Ext.dataview.List'],
xtype: 'myproject-main',
config: {
items: [
{
title: 'List of Data',
layout: 'fit',
xtype: 'container',
itemId: 'listContainer',
items: [
{
xtype: 'list',
store: 'DataStuff',
itemTpl: '{name}',
emptyText: 'No data added yet'
},
{
xtype: 'container',
docked: 'bottom',
padding: '5px',
layout: 'hbox',
items: [{ xtype: 'button', itemId: 'addBtn', text: 'Add Data', ui: 'confirm', width: '50%', align: 'left' }, { xtype: 'button', itemId: 'updateBtn', text: 'Update Data', ui: 'action', width: '50%', align: 'right' }]
}
]
}
]
}
});
ストアの下に追加できるカテゴリという単純なフィルターがあると思っていましたが、機能するものは何も見つかりませんでした。