How to Using a FormArray in a FormGroup

1.-When you use ReactiveForms, not use [(ngModel)] (is valid the “isIndividualMark” because this not belong to the formGroup 2.-A formArray can be a FormArray of FormGroups or a FormArray of FormControls A formArray of formGroups value will be in the way [{id:1,name:”one”},{id:2,name:”two”}] A formArray of formControls value will be in the way [“one”,”two”] 3.-When we … Read more

What is the difference between formControlName and FormControl?

I believe you missed an important point: [formGroup] directive in the second example. formControlName is used together with [formGroup] to save your form multiple dot navigations. For example: <div> <input type=”text” [formControl]=”myForm.controls.firstName”/> <input type=”text” [formControl]=”myForm.controls.lastName”/> <input type=”text” [formControl]=”myForm.controls.email”/> <input type=”text” [formControl]=”myForm.controls.title”/> </div> Is equivalent to: <div [formGroup]=”myForm”> <input type=”text” formControlName=”firstName”/> <input type=”text” formControlName=”lastName”/> <input type=”text” … Read more

What is the difference between “Form Controls” and “ActiveX Control” in Excel 2010?

Google is full of information on this. As Hans Passant said, Form controls are built in to Excel whereas ActiveX controls are loaded separately. Generally you’ll use Forms controls, they’re simpler. ActiveX controls allow for more flexible design and should be used when the job just can’t be done with a basic Forms control. Many … Read more