@syncfusion/ej2-multicolumn-combobox 29.2.4 → 30.1.37

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.
@@ -543,6 +543,11 @@ var MultiColumnComboBox = /** @__PURE__ @class */ (function (_super) {
543
543
  };
544
544
  MultiColumnComboBox.prototype.onDataBound = function () {
545
545
  var _this = this;
546
+ if (this.isLocaleChanged) {
547
+ this.isLocaleChanged = false;
548
+ this.unWireEvents();
549
+ this.wireEvents();
550
+ }
546
551
  var dataCount = this.dataSource.length;
547
552
  var popupChild = this.popupDiv.querySelector('.' + MULTICOLUMNGRID);
548
553
  var hasNoDataClass = this.popupDiv.classList.contains(NODATA);
@@ -1909,6 +1914,9 @@ var MultiColumnComboBox = /** @__PURE__ @class */ (function (_super) {
1909
1914
  this.gridObj.columns = gridColumns;
1910
1915
  }
1911
1916
  break;
1917
+ case 'locale':
1918
+ this.isLocaleChanged = true;
1919
+ break;
1912
1920
  }
1913
1921
  }
1914
1922
  };