當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript forms.FormGroup類代碼示例

本文整理匯總了TypeScript中@angular/forms.FormGroup的典型用法代碼示例。如果您正苦於以下問題:TypeScript FormGroup類的具體用法?TypeScript FormGroup怎麽用?TypeScript FormGroup使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了FormGroup類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it('should return null when path is empty', () => {
   const g = new FormGroup({});
   expect(g.get([])).toEqual(null);
 });
開發者ID:robwormald,項目名稱:angular,代碼行數:4,代碼來源:form_array_spec.ts

示例2: isTouched

 public isTouched(): boolean {
     return this.formGroup.get(this.controlName).touched;
 }
開發者ID:davsuapas,項目名稱:Angular2Ionic2ReusableApplications,代碼行數:3,代碼來源:edition-error-message.component.ts

示例3: hasError

 public hasError(): boolean {
     return this.formGroup.hasError(this.validationName, [this.controlName]);
 }
開發者ID:davsuapas,項目名稱:Angular2Ionic2ReusableApplications,代碼行數:3,代碼來源:edition-error-message.component.ts

示例4: onPlusButton

 /**
  * Opens the create form.
  */
 public onPlusButton(): void {
     if (!this.projectorToCreate) {
         this.projectorToCreate = new Projector();
         this.createForm.setValue({ name: '' });
     }
 }
開發者ID:CatoTH,項目名稱:OpenSlides,代碼行數:9,代碼來源:projector-list.component.ts

示例5:

 const paramedic = this.paramedics.filter(paramedic => paramedic._id === this.formEmergency.get('driver').value);
開發者ID:manuelao-s4ds,項目名稱:Emergencies-ui,代碼行數:1,代碼來源:emergency.component.ts

示例6: dirtyDescription

 /**
  * @returns true if the description on the form differs from the poll's description
  */
 public get dirtyDescription(): boolean {
     return this.descriptionForm.get('description').value !== this.poll.description;
 }
開發者ID:tsiegleauq,項目名稱:OpenSlides,代碼行數:6,代碼來源:assignment-poll.component.ts

示例7: goBack

 public goBack(): void {
   this.passwordForm.reset();
   this.location.back();
 }
開發者ID:cinovo,項目名稱:cloudconductor-server,代碼行數:4,代碼來源:usersettings.comp.ts

示例8: search

 /**
  * Handler for the search bar
  */
 public search(): void {
     const query = this.searchform.get('query').value;
     this.searchform.reset();
     this.router.navigate(['/search'], { queryParams: { query: query } });
 }
開發者ID:tsiegleauq,項目名稱:OpenSlides,代碼行數:8,代碼來源:site.component.ts

示例9: onEditDescriptionButton

 /**
  * Sends the edited poll description to the server
  * TODO: Better feedback
  */
 public async onEditDescriptionButton(): Promise<void> {
     const desc: string = this.descriptionForm.get('description').value;
     await this.assignmentRepo.updatePoll({ description: desc }, this.poll).then(null, this.raiseError);
 }
開發者ID:tsiegleauq,項目名稱:OpenSlides,代碼行數:8,代碼來源:assignment-poll.component.ts


注:本文中的@angular/forms.FormGroup類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。