Browse Source

Fix #1981

As per discussion in #1981, change of line introduced in https://github.com/wenzhixin/bootstrap-table/commit/6e3410c275e25cba60013c415518ca7c46dc9277 causes issues with filtered columns
Daniel Brose 9 years ago
parent
commit
7cfbba2b67
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/extensions/filter-control/bootstrap-table-filter-control.js

+ 1 - 1
src/extensions/filter-control/bootstrap-table-filter-control.js

@@ -519,7 +519,7 @@
     BootstrapTable.prototype.initSearch = function () {
     BootstrapTable.prototype.initSearch = function () {
         _initSearch.apply(this, Array.prototype.slice.apply(arguments));
         _initSearch.apply(this, Array.prototype.slice.apply(arguments));
 
 
-        if (this.options.sidePagination !== 'server') {
+        if (this.options.sidePagination === 'server') {
             return;
             return;
         }
         }