@@ -1,6 +1,10 @@
ChangeLog
---------
+### 1.11.1
+
+- fix(js): fix #2439, filterBy cannot filter array keys
### 1.11.0
- fix(js): fix cardVisible doesn't work bug
@@ -2593,7 +2593,8 @@
var that = this;
return $.grep(this.options.data, function (row) {
- return row[that.header.stateField];
+ // fix #2424: from html with checkbox
+ return row[that.header.stateField] === true;
});
};