I have string columns with select filter:
filter: {
type: 'select',
condition: function(a, b){
if( a.replace( /\s/g, '' ) == b.replace( /\s/g, '' ) ){
return true;
}
},
prepend: {'': '-- Select --'},
valueIndx: "ContractTypeName",
labelIndx: "ContractTypeName",
listeners: ['change']
}
When I select one option or refesh grid, this works fine. But this lost data in select when select next page: