ソースを参照

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 年 前
コミット
7cfbba2b67

+ 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;
         }