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
✨ Desired outcome: a new setValue method in the FormGroup class that allows setting the values of the form controls given an argument with the following shape:
typeValueParam=Record<string,ValueType>;// where ValueType (doesn't exist yet) is the acceptable values for all FormControl types// for exampleconstvalues={userName: 'value',email: 'invalid-email'}// then using setValueform.setValue(values)// ... will call control.setValue if the key matches the name of the control
The text was updated successfully, but these errors were encountered:
✨ Desired outcome: a new
setValue
method in the FormGroup class that allows setting the values of the form controls given an argument with the following shape:The text was updated successfully, but these errors were encountered: