@syncfusion/ej2-multicolumn-combobox 27.2.4 → 27.2.5

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.
@@ -339,9 +339,21 @@ var MultiColumnComboBox = /** @__PURE__ @class */ (function (_super) {
339
339
  _this.gridKeyActionHandler(args, true);
340
340
  }
341
341
  },
342
- resizing: function (args) { _this.gridSettings.resizing(args); },
343
- resizeStart: function (args) { _this.gridSettings.resizeStart(args); },
344
- resizeStop: function (args) { _this.gridSettings.resizeStop(args); }
342
+ resizing: function (args) {
343
+ if (_this.gridSettings.resizing) {
344
+ _this.gridSettings.resizing.call(_this, args);
345
+ }
346
+ },
347
+ resizeStart: function (args) {
348
+ if (_this.gridSettings.resizeStart) {
349
+ _this.gridSettings.resizeStart.call(_this, args);
350
+ }
351
+ },
352
+ resizeStop: function (args) {
353
+ if (_this.gridSettings.resizeStop) {
354
+ _this.gridSettings.resizeStop.call(_this, args);
355
+ }
356
+ }
345
357
  });
346
358
  this.gridEle = this.createElement('div', { id: getUniqueID('grid'), className: MULTICOLUMNGRID });
347
359
  this.updateGroupByField();