Joan Pablo

Results 119 comments of Joan Pablo

Hi @oravecz Here you can find more info and some examples on how [Enable/Disable Submit button](https://github.com/joanpablo/reactive_forms#enabledisable-submit-button) I hope you find it useful. In that doc you can find another extra...

Hi @SaddamMohsen You can also use just `control.reset()`

Hi @SaddamMohsen, Any situation is different. Here are two common patterns: 1- Having just one `FormGroup` and binding widgets of each step to the controls in the group. - This...

Hi @JulianSwales If a FormControl is **require** and it's value is **null** then it is **invalid**. The Reactive Widgets will show validation messages when it is invalid and touched (default...

Hi @sagnik-sanyal @vasilich6107, I'm planning to add the listeners (and not builders) as part of the core of Reactive Forms. I remember you talked to me about this in the...

Hi @mrverdant13, `ReactiveStatusListenableBuilder` is the one that will rebuild each time the status of the `FormArray` changes (i.e. INVALID, VALID, PENDING, DISABLED). The title of the issue is about showing...

Hi @mrverdant13, Thanks for the example. I'm going to take a look to understand what's going on.

Hi @mrverdant13, I have tested your example and it works correctly, as expected. The errors of the Form Array are displayed correctly. There are a lot of things to improve...

Hi @brunodmn, The ReactiveFormArray by itself does not show any error since it is only a widget that helps you listen for changes in a FormArray. The children on the...

Hi @brunodmn I will take a look at your code to understand the issue and let you know.