Browse Source

Fix #3364: singleSelect and search bug

zhixin 8 years ago
parent
commit
c40d14d78a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bootstrap-table.js

+ 1 - 1
src/bootstrap-table.js

@@ -1952,7 +1952,7 @@
                 checked = $this.prop('checked'),
                 row = that.data[$this.data('index')];
 
-            if (that.options.maintainSelected && $(this).is(':radio')) {
+            if ($(this).is(':radio')) {
                 $.each(that.options.data, function (i, row) {
                     row[that.header.stateField] = false;
                 });