本文整理匯總了TypeScript中@angular/forms.FormArray.at方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript FormArray.at方法的具體用法?TypeScript FormArray.at怎麽用?TypeScript FormArray.at使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@angular/forms.FormArray
的用法示例。
在下文中一共展示了FormArray.at方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('should work with nested form groups/arrays', () => {
a = new FormArray([
new FormGroup({'c2': new FormControl('v2'), 'c3': new FormControl('v3')}),
new FormArray([new FormControl('v4'), new FormControl('v5')])
]);
a.at(0).get('c3').disable();
(a.at(1) as FormArray).at(1).disable();
expect(a.getRawValue()).toEqual([{'c2': 'v2', 'c3': 'v3'}, ['v4', 'v5']]);
});
示例2: it
it('should mark all descendants as touched', () => {
const formArray: FormArray = new FormArray([
new FormControl('v1'), new FormControl('v2'),
new FormGroup({'c1': new FormControl('v1')}),
new FormArray([new FormGroup({'c2': new FormControl('v2')})])
]);
expect(formArray.touched).toBe(false);
const control1 = formArray.at(0) as FormControl;
expect(control1.touched).toBe(false);
const group1 = formArray.at(2) as FormGroup;
expect(group1.touched).toBe(false);
const group1Control1 = group1.get('c1') as FormControl;
expect(group1Control1.touched).toBe(false);
const innerFormArray = formArray.at(3) as FormArray;
expect(innerFormArray.touched).toBe(false);
const innerFormArrayGroup = innerFormArray.at(0) as FormGroup;
expect(innerFormArrayGroup.touched).toBe(false);
const innerFormArrayGroupControl1 = innerFormArrayGroup.get('c2') as FormControl;
expect(innerFormArrayGroupControl1.touched).toBe(false);
formArray.markAllAsTouched();
expect(formArray.touched).toBe(true);
expect(control1.touched).toBe(true);
expect(group1.touched).toBe(true);
expect(group1Control1.touched).toBe(true);
expect(innerFormArray.touched).toBe(true);
expect(innerFormArrayGroup.touched).toBe(true);
expect(innerFormArrayGroupControl1.touched).toBe(true);
});
示例3: moveFormArrayGroup
moveFormArrayGroup(index: number, step: number, formArray: FormArray, formArrayModel: DynamicFormArrayModel): void {
let newIndex = index + step,
moveUp = step >= 0;
if ((index >= 0 && index < formArrayModel.size) && (newIndex >= 0 && newIndex < formArrayModel.size)) {
let movingGroups: AbstractControl[] = [];
for (let i = moveUp ? index : newIndex; i <= (moveUp ? newIndex : index); i++) {
movingGroups.push(formArray.at(i));
}
movingGroups.forEach((formControl, idx) => {
let position;
if (moveUp) {
position = idx === 0 ? newIndex : index + idx - 1;
} else {
position = idx === movingGroups.length - 1 ? newIndex : newIndex + idx + 1;
}
formArray.setControl(position, formControl);
});
formArrayModel.moveGroup(index, step);
} else {
throw new Error(`form array group cannot be moved due to index or new index being out of bounds`);
}
}
示例4:
this.terms.forEach((term, i) => {
const control = this.controls.at(i);
if (suggestedTermChange.currentValue === term) {
control.disable();
} else {
control.enable();
}
});
示例5: multipleCheckboxRequireMoreThanOne
multipleCheckboxRequireMoreThanOne(fa: FormArray) {
let checkedCount = 0;
for (let x = 0; x < fa.length; ++x) {
if (fa.at(x).value) {
checkedCount++;
}
}
const valid = (checkedCount > 1);
return valid ? null : {
multipleCheckboxRequireMoreThanOne: true
};
}
示例6: multipleCheckboxRequireAtLeastOne
multipleCheckboxRequireAtLeastOne(fa: FormArray) {
let valid = false;
for (let x = 0; x < fa.length; ++x) {
if (fa.at(x).value) {
valid = true;
break;
}
}
return valid ? null : {
multipleCheckboxRequireAtLeastOne: true
};
}