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


TypeScript ng-bootstrap.NgbActiveModal類代碼示例

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


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

示例1: clear

 clear() {
     this.activeModal.dismiss('cancel');
 }
開發者ID:rogrs,項目名稱:safh,代碼行數:3,代碼來源:medicamentos-dialog.component.ts

示例2: onSaveSuccess

 private onSaveSuccess(result: PersonelHotpersonel) {
     this.eventManager.broadcast({ name: 'personelListModification', content: 'OK'});
     this.isSaving = false;
     this.activeModal.dismiss(result);
 }
開發者ID:ATS01Dev,項目名稱:HotMan,代碼行數:5,代碼來源:personel-hotpersonel-dialog.component.ts

示例3: onClickedCancel

 onClickedCancel(): void {
   this.activeModal.close('Close click');
 }
開發者ID:ScienceSoft-Inc,項目名稱:XamarinDiscountsApp,代碼行數:3,代碼來源:partner-details.component.ts

示例4: requestResetPassword

 requestResetPassword() {
     this.activeModal.dismiss('to state requestReset');
     this.router.navigate(['/reset', 'request']);
 }
開發者ID:haythem-ouederni,項目名稱:jhipster-v4-7-0-angular4,代碼行數:4,代碼來源:login.component.ts

示例5: onSaveSuccess

 private onSaveSuccess(result: Category) {
     this.eventManager.broadcast({ name: 'categoryListModification', content: 'OK'});
     this.isSaving = false;
     this.activeModal.dismiss(result);
 }
開發者ID:TotemaT,項目名稱:oniryxHackathon,代碼行數:5,代碼來源:category-dialog.component.ts

示例6:

	ok() {
		this.activeModal.close(null);
	}
開發者ID:endeavourhealth,項目名稱:DataChecker,代碼行數:3,代碼來源:demographics.dialog.ts

示例7: register

 register() {
     this.activeModal.dismiss('to state register');
     this.router.navigate(['/register']);
 }
開發者ID:haythem-ouederni,項目名稱:jhipster-v4-7-0-angular4,代碼行數:4,代碼來源:login.component.ts

示例8: closeModal

 closeModal() {
   this.activeModal.close('Modal Closed');
 }
開發者ID:dmasur,項目名稱:kitchen-board,代碼行數:3,代碼來源:news-form-modal.component.ts

示例9: onClickDismiss

 onClickDismiss(){
     this.activeModal.close();
 }
開發者ID:thruthesky,項目名稱:english,代碼行數:3,代碼來源:forgot-password.ts

示例10:

		}).then((result) => {
			if (result.value) { this.modal.dismiss(); }
		});
開發者ID:RinMinase,項目名稱:anidb,代碼行數:3,代碼來源:add-title.component.ts


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