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 e1138e6 commit cedae0eCopy full SHA for cedae0e
projects/igniteui-angular-wrappers/src/lib/igcombo/igcombo.component.ts
@@ -58,9 +58,8 @@ export class IgComboComponent extends IgControlBase<IgCombo> implements ControlV
58
jQuery(this._el).on('input', evt => {
59
// D.K. #324 Do not override the model value if the text value is representing the same model value
60
const item = jQuery(this._el).data('igCombo').itemsFromValue(this._model.model);
61
- if (this.options.multiSelection && this.options.multiSelection.enabled ||
62
- !item ||
63
- item.data && item.data.text !== evt.target.value) {
+ if (!item ||
+ item.data && item.data[this.options.textKey] !== evt.target.value) {
64
this._model.viewToModelUpdate(evt.target.value);
65
}
66
});
0 commit comments