@syncfusion/ej2-treegrid 22.2.5 → 22.2.9

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.
@@ -5429,9 +5429,11 @@ var TreeGrid = /** @__PURE__ @class */ (function (_super) {
5429
5429
  }
5430
5430
  };
5431
5431
  TreeGrid.prototype.ignoreInColumn = function (ignoreOnColumn, column) {
5432
- for (var i = 0; i < ignoreOnColumn.length; i++) {
5433
- delete column[ignoreOnColumn[parseInt(i.toString(), 10)]];
5434
- column.filter = {};
5432
+ if (isNullOrUndefined(column.template)) {
5433
+ for (var i = 0; i < ignoreOnColumn.length; i++) {
5434
+ delete column[ignoreOnColumn[parseInt(i.toString(), 10)]];
5435
+ column.filter = {};
5436
+ }
5435
5437
  }
5436
5438
  };
5437
5439
  TreeGrid.prototype.mouseClickHandler = function (e) {