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 0537e44 commit 6bc0949Copy full SHA for 6bc0949
projects/igniteui-angular-wrappers/src/lib/igcombo/igcombo.component.ts
@@ -45,9 +45,8 @@ export class IgComboComponent extends IgControlBase<IgCombo> implements ControlV
45
jQuery(this._el).on("input", function (evt) {
46
// D.K. #324 Do not override the model value if the text value is representing the same model value
47
let item = jQuery(that._el).data("igCombo").itemsFromValue(that._model.model);
48
- if (that.options.multiSelection && that.options.multiSelection.enabled ||
49
- !item ||
50
- item.data && item.data.text !== evt.target.value) {
+ if (!item ||
+ item.data && item.data[that.options.textKey] !== evt.target.value) {
51
that._model.viewToModelUpdate(evt.target.value);
52
}
53
});
0 commit comments