I have a sencha fiddle for that can be used to reproduce the issue I am seeing here:
https://fiddle.sencha.com/#fiddle/s2e
The issue I am seeing is that if I manually change the filters on my 'Name' column by clicking on Bart, Marge and Homer and then try and sort the items the filter I added in my columns stanza ...
columns: [
{
text : 'Name',
dataIndex : 'name',
filter : { type: 'list', value : 'Lisa'}
},
... overrides the selections I made manually through the UI. Or in other words, "if I click on Bart, Marge and Homer they appear in the grid panel until I sort the rows. When I sort the rows only Lisa is shown."
Is this a bug or am I doing something wrong? I'd hate to think that this is how it is suppose to work.
filter: {type: 'list'}
and it will work as expected. – afschr