@syncfusion/ej2-multicolumn-combobox 33.1.46 → 33.2.3

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.
@@ -468,6 +468,13 @@ let MultiColumnComboBox = class MultiColumnComboBox extends Component {
468
468
  this.updateGridHeight(true, true);
469
469
  }
470
470
  this.popupObj.refreshPosition();
471
+ if (args.requestType === 'refresh') {
472
+ setTimeout(() => {
473
+ if (this.popupObj && this.isPopupOpen) {
474
+ this.popupObj.refreshPosition();
475
+ }
476
+ }, 0);
477
+ }
471
478
  this.gridObj.element.querySelector('.e-content').scrollTop = 0;
472
479
  }
473
480
  handleKeyPressed(args) {