Bug
When selecting an option in the auto complete , it should display the selected value in the text field
When selecting an option in the auto complete, it does not display the selected value in the text field
IE 11
Are you talking about selecting by click or with the keyboard? The click issue should be resolved by https://github.com/angular/material2/pull/3188.
I'm referring to selecting by clicking , i've tried changing the md-option to mat-option but i've encounter an error (see image). I'm still looking for the cause.

The mat- prefix is opt-in, md- is the one that is on by default. As for the clicking issue, it'll be resolved by #3188.
@crisbeto When do you anticipate the pull request will be merged?
Please clarify, when it will be merged, its very critical issue
Looks like it's pending review from @kara, this is a critical issue for us as well.
@djleonskennedy @benjamin-wilson . If you are looking for a short term solution here is what I am doing. Needed this for production and the merge is taking longer then I expected.
@angular/material/@angular/material.es5.js.
Change this one section
FROM:
MdAutocompleteTrigger.prototype._handleBlur = function (newlyFocusedTag) {
this._onTouched();
// Only emit blur event if the new focus is *not* on an option.
if (newlyFocusedTag !== 'MD-OPTION') {
this._blurStream.next(null);
}
};
TO:
MdAutocompleteTrigger.prototype._handleBlur = function(newlyFocusedTag) {
this._onTouched();
if (newlyFocusedTag == null) {
newlyFocusedTag = document.activeElement.className.indexOf('mat-option') >= 0 ? 'MD-OPTION' : '';
}
// Only emit blur event if the new focus is *not* on an option.
if (newlyFocusedTag !== 'MD-OPTION') { //newlyFocusedTag !== 'MD-OPTION'
this._blurStream.next(null);
}
};
Thanks...by changing the code in @angular/material/@angular/material.es5.js.
It worked
how to update material component..instead of changing it manually.
This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
_This action has been performed automatically by a bot._
Most helpful comment
@crisbeto When do you anticipate the pull request will be merged?