top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to create Dynamic Forms in Angular?

0 votes
439 views
How to create Dynamic Forms in Angular?
posted Mar 19, 2018 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Using ReactiveFormsModule we can create dynamic forms. i.e) ReactiveForms
Angular reactive forms facilitate a reactive style of programming that favors explicit management of the data flowing between a non-UI data model (typically retrieved from a server) and a UI-oriented form model that retains the states and values of the HTML controls on screen. Reactive forms offer the ease of using reactive patterns, testing, and validation.

With reactive forms, you create a tree of Angular form control objects in the component class and bind them to native form control elements in the component template, using techniques described in this guide.

answer Apr 30, 2018 by Chahat Sharma
...