Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - sibe

Pages: [1]
2
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:



Pages: [1]