-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InputNumber | does not update the input value onInput #12733
Comments
Is this the same issue as the one I mentioned in Discord? I want to update the value of an input field when the form value changes (e.g. user inputs a number that doesn't match a specific requirement, I want to reset it). See StackBlitz, you can see that the hello is printed to the console and the form.getRawValue is updated, but the second time you change the input field it does not reflect the actual value anymore. StackBlitz here. So steps to reproduce:
|
Thanks for steps, I'll create a case in this fix and test the situation. |
fixed in 558fed5 |
Problem: Value only updates on blur and on focus events, cannot subscribe to valueChanges on input with reactive forms. Can't detect input change.
Expected behavior: Value updates on user input.
The text was updated successfully, but these errors were encountered: