当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript FormArray.at方法代码示例

本文整理汇总了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']]);
      });
开发者ID:manekinekko,项目名称:angular,代码行数:10,代码来源:form_array_spec.ts

示例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);
      });
开发者ID:matsko,项目名称:angular,代码行数:49,代码来源:form_array_spec.ts

示例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`);
        }
    }
开发者ID:thanhdevapp,项目名称:ng-dynamic-forms,代码行数:33,代码来源:dynamic-form.service.ts

示例4:

 this.terms.forEach((term, i) => {
     const control = this.controls.at(i);
     if (suggestedTermChange.currentValue === term) {
         control.disable();
     } else {
         control.enable();
     }
 });
开发者ID:Gitjerryzhong,项目名称:bell-tm-static,代码行数:8,代码来源:allowed-term.component.ts

示例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
        };
    }
开发者ID:asadsahi,项目名称:AspNetCoreSpa,代码行数:13,代码来源:forms.service.ts

示例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
        };
    }
开发者ID:asadsahi,项目名称:AspNetCoreSpa,代码行数:13,代码来源:forms.service.ts


注:本文中的@angular/forms.FormArray.at方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。