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 37a6017 commit d8ce58aCopy full SHA for d8ce58a
projects/igniteui-angular/src/lib/combo/combo.component.ts
@@ -1549,6 +1549,9 @@ export class IgxComboComponent extends DisplayDensityBase implements IgxComboBas
1549
this.registerRemoteEntries(addedItems);
1550
this.registerRemoteEntries(removedItems, false);
1551
value = Object.keys(this._remoteSelection).map(e => this._remoteSelection[e]).join(', ');
1552
+ } else {
1553
+ // If new selection is empty, clear all items
1554
+ this.registerRemoteEntries(args.oldSelection, false);
1555
}
1556
} else {
1557
value = this.displayKey !== null && this.displayKey !== undefined ?
0 commit comments