From c40d14d78abd892cfe26279efd8636e4474a530c Mon Sep 17 00:00:00 2001 From: zhixin Date: Thu, 7 Dec 2017 16:40:30 +0800 Subject: [PATCH] Fix #3364: singleSelect and search bug --- src/bootstrap-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap-table.js b/src/bootstrap-table.js index 698c4f77b5..1935419d1e 100644 --- a/src/bootstrap-table.js +++ b/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; });