I have a custom autocomplete component that implements ControlValueAccessor
. From the parent component I am tying to set the value using form.get('productName').setValue('Product 1');
. This sets the value in the form but it's not reflected in the input that is associated to the autocomplete.
I have a stackblitz example that shows the input not displaying the value. As soon as I remove the attribute [matAutocomplete]="auto"
from the input, the value is visible in the UI.
https://stackblitz.com/edit/angular-autocomplete-form-control?file=src%2Fapp%2Fapp.component.ts
I have tried what the mentioned here but no success either - https://stackoverflow.com/a/56073917/4142653