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


TypeScript modal.ModalDirective類代碼示例

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


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

示例1:

    show$(title: string, description: string): Observable<boolean> {
        // Change modal content
        this.title = title;
        this.description = description;

        // Prepare return value
        this._confirmationSource = new Subject<boolean>();
        const confirmation$ = this._confirmationSource.asObservable();

        // Show modal
        this.modal.show();

        return confirmation$;
    }
開發者ID:fabienvauchelles,項目名稱:qscore,代碼行數:14,代碼來源:confirm.component.ts

示例2: hideChildModal

 public hideChildModal():void {
   this.childModal.hide();
 }
開發者ID:kekeh,項目名稱:ngx-bootstrap,代碼行數:3,代碼來源:child.ts

示例3: showChildModal

 public showChildModal():void {
   this.childModal.show();
 }
開發者ID:kekeh,項目名稱:ngx-bootstrap,代碼行數:3,代碼來源:child.ts

示例4: show

 // invoked by the parent
 show() {
   this.modal.show();
 }
開發者ID:harunurhan,項目名稱:record-editor,代碼行數:4,代碼來源:manual-merge-modal.component.ts

示例5:

 result => {
     this.settingAritcleModel.hide();
     this.router.navigate(['/']);
 }
開發者ID:luoqg,項目名稱:wikift,代碼行數:4,代碼來源:editor.article.component.ts

示例6: showSettingModel

 showSettingModel() {
     this.settingAritcleModel.show();
 }
開發者ID:luoqg,項目名稱:wikift,代碼行數:3,代碼來源:editor.article.component.ts

示例7: showModal

 showModal() {
   this.messages = [];
   this.modal.show();
 }
開發者ID:OlegDubrovskyi,項目名稱:ngx-bootstrap,代碼行數:4,代碼來源:events.ts

示例8: no

 no() {
     this._confirmationSource.next(false);
     this.modal.hide();
 }
開發者ID:fabienvauchelles,項目名稱:qscore,代碼行數:4,代碼來源:confirm.component.ts

示例9: yes

 yes() {
     this._confirmationSource.next(true);
     this.modal.hide();
 }
開發者ID:fabienvauchelles,項目名稱:qscore,代碼行數:4,代碼來源:confirm.component.ts


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