@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.
@@ -305,9 +305,21 @@ let MultiColumnComboBox = class MultiColumnComboBox extends Component {
305
305
  this.gridKeyActionHandler(args, true);
306
306
  }
307
307
  },
308
- resizing: (args) => { this.gridSettings.resizing(args); },
309
- resizeStart: (args) => { this.gridSettings.resizeStart(args); },
310
- resizeStop: (args) => { this.gridSettings.resizeStop(args); }
308
+ resizing: (args) => {
309
+ if (this.gridSettings.resizing) {
310
+ this.gridSettings.resizing.call(this, args);
311
+ }
312
+ },
313
+ resizeStart: (args) => {
314
+ if (this.gridSettings.resizeStart) {
315
+ this.gridSettings.resizeStart.call(this, args);
316
+ }
317
+ },
318
+ resizeStop: (args) => {
319
+ if (this.gridSettings.resizeStop) {
320
+ this.gridSettings.resizeStop.call(this, args);
321
+ }
322
+ }
311
323
  });
312
324
  this.gridEle = this.createElement('div', { id: getUniqueID('grid'), className: MULTICOLUMNGRID });
313
325
  this.updateGroupByField();