网格中有一个字段:
....
{
xtype: 'gridcolumn',
text: 'Статус',
flex:1,
dataIndex: 'status',
editor: this.statesCombo,
filter: {
type: 'list',
store: this.getStatesStore()
},
renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {
var states;
if (this.getStatesStore()) {
states = this.getStatesStore().getById(record.get('status'));
}
return states ? states.get('name') : '';
},
scope: this
},
...
我需要为此字段的值设置过滤功能。
因此,我这样做:
....
filter: {
type: 'list',
store: this.getStatesStore()
},
....
但是在这种情况下,过滤器会显示可用于过滤的id值。
如何使价值观本身出现?