ninegrid2 6.130.0 → 6.132.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18297,7 +18297,7 @@ class ngFilterPanel extends HTMLElement
18297
18297
  var data = owner.data.getValidDataNF();
18298
18298
  $("ng-filter-button", owner.body).each((index,el) => {
18299
18299
 
18300
- if (el.closest('th,td').dataset.col !== col || !el.filterData) return true;
18300
+ if (el.closest('th,td').dataset.col == col || !el.filterData) return true;
18301
18301
  /**
18302
18302
  el.filterData.forEach(o => {
18303
18303
  var idx = owner.fields.indexOf(o.colnm);
@@ -18295,7 +18295,7 @@ class ngFilterPanel extends HTMLElement
18295
18295
  var data = owner.data.getValidDataNF();
18296
18296
  $("ng-filter-button", owner.body).each((index,el) => {
18297
18297
 
18298
- if (el.closest('th,td').dataset.col !== col || !el.filterData) return true;
18298
+ if (el.closest('th,td').dataset.col == col || !el.filterData) return true;
18299
18299
  /**
18300
18300
  el.filterData.forEach(o => {
18301
18301
  var idx = owner.fields.indexOf(o.colnm);
@@ -434,7 +434,7 @@ class ngFilterPanel extends HTMLElement
434
434
  var data = owner.data.getValidDataNF();
435
435
  $("ng-filter-button", owner.body).each((index,el) => {
436
436
 
437
- if (el.closest('th,td').dataset.col !== col || !el.filterData) return true;
437
+ if (el.closest('th,td').dataset.col == col || !el.filterData) return true;
438
438
  /**
439
439
  el.filterData.forEach(o => {
440
440
  var idx = owner.fields.indexOf(o.colnm);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.130.0",
4
+ "version": "6.132.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -434,7 +434,7 @@ class ngFilterPanel extends HTMLElement
434
434
  var data = owner.data.getValidDataNF();
435
435
  $("ng-filter-button", owner.body).each((index,el) => {
436
436
 
437
- if (el.closest('th,td').dataset.col !== col || !el.filterData) return true;
437
+ if (el.closest('th,td').dataset.col == col || !el.filterData) return true;
438
438
  /**
439
439
  el.filterData.forEach(o => {
440
440
  var idx = owner.fields.indexOf(o.colnm);