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


TypeScript bs-modal-ref.service.BsModalRef類代碼示例

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


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

示例1: approve

 approve(appointmentRequest2: AppointmentRequest){
   this.appointmentRequest = appointmentRequest2;
   this.appointmentRequest.status ="Aprovado";
   this.appointmentrequestService.update(this.appointmentRequest, appointmentRequest2._id).subscribe();
   this.refresh();
   this.modalRef.hide();
 }
開發者ID:CompCult,項目名稱:mv-front,代碼行數:7,代碼來源:appointment-request.component.ts

示例2: closeFirstModal

 closeFirstModal() {
   this.modalRef.hide();
   this.modalRef = null;
 }
開發者ID:OlegDubrovskyi,項目名稱:ngx-bootstrap,代碼行數:4,代碼來源:service-nested.ts

示例3:

 this.bsModalRef.content.onClose = (myData) => {
     this.updateList();
     this.bsModalRef.hide();
     this.myData = myData;
 };
開發者ID:CompCult,項目名稱:mv-front,代碼行數:5,代碼來源:mission-answer.component.ts

示例4: cancel

 cancel(): void {
   this.onClose.next(null);
   this.bsModalRef.hide();
 }
開發者ID:imagej,項目名稱:imagej-server,代碼行數:4,代碼來源:modal.component.ts

示例5: confirm

 confirm(): void {
   const processedInputs = new Object();
   this.componentRequests.forEach(cr => { processedInputs[cr.name] = cr.getProcessedValue(); });
   this.onClose.next(processedInputs);
   this.bsModalRef.hide();
 }
開發者ID:imagej,項目名稱:imagej-server,代碼行數:6,代碼來源:modal.component.ts

示例6: closeAbout

 public closeAbout( $event: AboutEvent ): void {
   this.aboutRef.hide();
 }
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:3,代碼來源:vertical-nav.component.ts

示例7: decline

 decline(): void {
   this.message = 'Declined!';
   this.modalRef.hide();
 }
開發者ID:OlegDubrovskyi,項目名稱:ngx-bootstrap,代碼行數:4,代碼來源:service-confirm-window.ts

示例8: confirm

 confirm(): void {
   this.message = 'Confirmed!';
   this.modalRef.hide();
 }
開發者ID:OlegDubrovskyi,項目名稱:ngx-bootstrap,代碼行數:4,代碼來源:service-confirm-window.ts


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