Browse Source

Merge pull request #2207 from dabros/patch-10

Fix #1981
wenzhixin 9 years ago
parent
commit
a631aea078
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 () {
         _initSearch.apply(this, Array.prototype.slice.apply(arguments));
 
-        if (this.options.sidePagination !== 'server') {
+        if (this.options.sidePagination === 'server') {
             return;
         }