@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.
@@ -475,6 +475,11 @@ let MultiColumnComboBox = class MultiColumnComboBox extends Component {
475
475
  }
476
476
  }
477
477
  onDataBound() {
478
+ if (this.isLocaleChanged) {
479
+ this.isLocaleChanged = false;
480
+ this.unWireEvents();
481
+ this.wireEvents();
482
+ }
478
483
  const dataCount = this.dataSource.length;
479
484
  const popupChild = this.popupDiv.querySelector('.' + MULTICOLUMNGRID);
480
485
  const hasNoDataClass = this.popupDiv.classList.contains(NODATA);
@@ -1813,6 +1818,9 @@ let MultiColumnComboBox = class MultiColumnComboBox extends Component {
1813
1818
  this.gridObj.columns = gridColumns;
1814
1819
  }
1815
1820
  break;
1821
+ case 'locale':
1822
+ this.isLocaleChanged = true;
1823
+ break;
1816
1824
  }
1817
1825
  }
1818
1826
  }