对于矛盾字段,我需要设置过滤条件。我不明白如何正确设置参数“ store:”中的值。
{
text: 'Контрагент',
dataIndex: 'contragent',
filter: {
type: 'list',
store: //how to get the "name" of the record from the ContrAgents for filtering
},
renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {
if (value > 0) {
if (rec = me.myContrAgents.findRecord('id', value)) {
return rec.get('name');
}
}
return '';
}
}
我在https://arxiv.org/pdf/1506.01497.pdf位置代码app / view / ListView.js中举个例子