Joan Pablo
Joan Pablo
Thanks, @538023 for the suggestion, that will be a good custom reactive widget.
Hi @rebaz94, Thank you for using Reactive Forms and for the issue. BTW your UI in the sample video is really nice ;) In order to be able to help...
Hi @rebaz94, Yes, you can use `FormGroup` in multiple places, that is not the issue. If you ask me, the code you are sharing is unnecessarily complex. You are creating...
@rebaz94 take notice that you must have only one instance of `FormGroup`, the FormGroup is your model, it does not matter how many times you rebuild the UI, but you...
Hi @rebaz94, Thanks for giving us all these details they are really useful. I will take a look at the code. There is just one thing I can tell and...
@rebaz94 In your use case (the first video SignIn and Signup) I advise you to have 2 different FormGroups, one for SignIn and another for SignUp. Anyway, I will try...
Hi @rebaz94, Yes, creating 2 separated FormGroup definitely solves the issue. The problem is that a `FormControl` can only handle one `FocusNode` at a time (the last registered `ReactiveTextField`). Your...
Another temporary solution, in case you still want to use the same FormGroup for both views, is to override the default `showErrors()` for the widgets and use for example `control.invalid...
Please let me know which of the last 2 options I gave you was good to you @rebaz94
Hi @rebaz94 I will use your code and will reproduce your use case using 2 diferent form groups. The second tab should not show any error until you interact with...