We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50c8ed5 commit 32b2bd2Copy full SHA for 32b2bd2
src/igcombo/igcombo.component.ts
@@ -79,8 +79,7 @@ export class IgComboComponent extends IgControlBase<IgCombo> implements ControlV
79
if (this._config.dataSource && this._config.dataSource.length !== this._dataSource.length) {
80
this._dataSource = jQuery.extend(true, [], this._config.dataSource);
81
if (this._changes) {
82
- this._changes.forEachAddedItem(r => element.data("igCombo").dataBind());
83
- this._changes.forEachRemovedItem(r => element.data("igCombo").dataBind());
+ element.data("igCombo").dataBind();
84
if (this.model && this.model.value) {
85
this.writeValue(this.model.value);
86
}
0 commit comments