@syncfusion/ej2-multicolumn-combobox 31.1.17 → 31.2.2

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.
@@ -351,6 +351,7 @@ var MultiColumnComboBox = /** @__PURE__ @class */ (function (_super) {
351
351
  _this.showHideSpinner(false);
352
352
  if (!_this.isMainDataUpdated) {
353
353
  _this.mainData = _this.gridData;
354
+ _this.remoteDataLength = _this.gridData.length;
354
355
  _this.isMainDataUpdated = true;
355
356
  }
356
357
  if (_this.popupDiv) {
@@ -368,6 +369,7 @@ var MultiColumnComboBox = /** @__PURE__ @class */ (function (_super) {
368
369
  _this.trigger('actionComplete', { result: listItems }, function (e) {
369
370
  if (!_this.isMainDataUpdated) {
370
371
  _this.mainData = _this.gridData;
372
+ _this.remoteDataLength = _this.gridData.length;
371
373
  _this.isMainDataUpdated = true;
372
374
  }
373
375
  if (_this.popupDiv) {
@@ -1331,7 +1333,8 @@ var MultiColumnComboBox = /** @__PURE__ @class */ (function (_super) {
1331
1333
  var e = mouseEvent ? mouseEvent : keyEvent;
1332
1334
  var val = isKeyDown ? this.matchedContent : this.exactMatchedContent;
1333
1335
  if (!val && e.code !== 'Enter') {
1334
- this.inputEle.value = this.value = this.index = this.text = null;
1336
+ this.inputEle.value = null;
1337
+ this.setProperties({ value: null, index: null, text: null }, true);
1335
1338
  }
1336
1339
  this.hidePopup(e);
1337
1340
  if (this.matchedRowEle && !isClearValues && val) {
@@ -1603,12 +1606,6 @@ var MultiColumnComboBox = /** @__PURE__ @class */ (function (_super) {
1603
1606
  _this.inputEle.setAttribute('aria-activedescendant', firstRow.getAttribute('data-uid'));
1604
1607
  }
1605
1608
  }
1606
- if (!isNullOrUndefined(_this.dataSource) && _this.dataSource instanceof DataManager) {
1607
- _this.dataSource.executeQuery(new Query).then(function (e) {
1608
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
1609
- _this.remoteDataLength = e.result.length;
1610
- });
1611
- }
1612
1609
  _this.popupObj.show(new Animation(eventArgs.animation), _this.popupEle.firstElementChild);
1613
1610
  }
1614
1611
  });