我创建了一个包含列的 unik 值的过滤器:
{
header : 'Вопрос А',
dataIndex: 'answerA',
itemId: 'answerA',
width : 100,
filter: {
type: 'list',
options: this.getStore().collect('answerA'),
},
editor: 'textfield'
}
当用户在列的单元格中输入新值时,该值必须出现在过滤器中。我怎样才能做到这一点?
我看过Extjs Grid Filter - Dynamic ListFilter但它对我帮助不大。