本文整理汇总了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
};
}