Search⌘ K

Creating Reactive Forms for Client Contacts Manager Application

Explore how to build reactive forms in Angular using Observables and RxJS. Understand how to populate, update, and manage client and company data dynamically within forms, enhancing responsiveness and user experience.

Major changes

In this version of an application, we have made the following changes:

  • Updated both the Client and Company services to show that Observables are being returned from the HttpClient calls.

  • Updated both the Client Edit form and the Company Edit form to Reactive forms.

  • Used RxJs in the Search Form Component, so it now starts searching as you type.

  • Added OnChanges lifecycle hook to both the Client and Company edit forms in order to populate a Reactive form ...