You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when we bind an angular form to the fluent-text-input component, e.g., <fluent-text-input [qeAutofocus] placeholder="Name" formControlName="name"/>
if we try and update the value of the control in the component, e.g., this.form.controls.name.setValue('foo')
the control isn't updated. The expected behaviour is that if you change the value of the form controller it should update the value of the input, but it doesn't seem to change dynamically
The text was updated successfully, but these errors were encountered:
Can you take a look at that and let me know if that answers your question, or if you are still seeing the error there? When I click "Set Name to Foo" the value in the UI and the browser console updates to 'foo'. If there are still issues, we can definitely file and bug and address as soon as we can.
when we bind an angular form to the fluent-text-input component, e.g.,
<fluent-text-input [qeAutofocus] placeholder="Name" formControlName="name"/>
if we try and update the value of the control in the component, e.g.,
this.form.controls.name.setValue('foo')
the control isn't updated. The expected behaviour is that if you change the value of the form controller it should update the value of the input, but it doesn't seem to change dynamically
The text was updated successfully, but these errors were encountered: