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


TypeScript dialogs.confirm函数代码示例

本文整理汇总了TypeScript中ui/dialogs.confirm函数的典型用法代码示例。如果您正苦于以下问题:TypeScript confirm函数的具体用法?TypeScript confirm怎么用?TypeScript confirm使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了confirm函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: setTimeout

 setTimeout(() => {
     Dialogs.confirm({
         title: this.configuration.title,
         message: this.configuration.text,
         okButtonText: this.configuration.agreeButtonText,
         cancelButtonText: this.configuration.declineButtonText,
         neutralButtonText: this.configuration.remindButtonText
     }).then(result => {
         if (result == true) {
             let appStore = "";
             if (Application.android) {
                 let androidPackageName = this.configuration.androidPackageId ? this.configuration.androidPackageId : Application.android.packageName;
                 let uri = android.net.Uri.parse("market://details?id=" + androidPackageName);
                 let myAppLinkToMarket = new android.content.Intent(android.content.Intent.ACTION_VIEW, uri);
                 // Launch the PlayStore
                 Application.android.foregroundActivity.startActivity(myAppLinkToMarket);
             } else if (Application.ios) {
                 appStore = "itms-apps://itunes.apple.com/en/app/id" + this.configuration.iTunesAppId;
             }
             Utility.openUrl(appStore);
         } else if (result == false) {
             // Decline
         } else {
             ApplicationSettings.setNumber(this.configuration.id, 0);
         }
     });
 });
开发者ID:nraboy,项目名称:nativescript-ratings,代码行数:27,代码来源:ratings.ts

示例2: confirm

 export function confirm(title: string, message: string): Promise<boolean> {
     return dialogsModule.confirm({
         title: title,
         message: message,
         okButtonText: "YES",
         cancelButtonText: "NO"
     });
 }
开发者ID:Progress-Hackaton2016-Team3,项目名称:PlatformPal,代码行数:8,代码来源:notifications.ts

示例3: onLowScore

 onLowScore(): void {
   Dialogs.confirm({
     title: 'W i n n e r',
     message: 'You solved the puzzle in ' + this.board.moves + ' moves!',
     okButtonText: 'Ok'
   }).then(() => {
     this._stateService.updateLevel(2);
   });
 }
开发者ID:bradyhouse,项目名称:house,代码行数:9,代码来源:level-one.component.ts

示例4: showDialog

export function showDialog(args: EventData) {
    let options = {
        title: "Dialog",
        message: "Message",
        okButtonText: "Yes",
        cancelButtonText: "No"

    }

    confirm(options).then((result: boolean) => {
        console.log(result);
    })
}
开发者ID:NathanWalker,项目名称:NativeScript,代码行数:13,代码来源:modal-no-page.ts

示例5: onShowDialog

    onShowDialog(title: string, result: string) {
        let options: any = {
            title: title,
            message: result,
            okButtonText: "Ok"
        }

        confirm(options).then((result: boolean) => {
            console.log(result);
        })
    }
开发者ID:NathanWalker,项目名称:nativescript-angular,代码行数:11,代码来源:tabs.component.ts

示例6: onLowScore

 onLowScore(): void {
   Dialogs.confirm({
     title: 'W i n n e r',
     message: 'You solved the puzzle in ' + this.board.moves + ' moves!',
     okButtonText: 'Ok'
   }).then(() => {
     this._router.navigate([
       '/:target', {
         target: this.board.nextScreen
       }
     ], Config.transition);
   });
 }
开发者ID:bradyhouse,项目名称:house,代码行数:13,代码来源:level-three.component.ts

示例7: displayConfirmDialog

 displayConfirmDialog() {
     // >> confirm-dialog-code
     let options = {
         title: "Race selection",
         message: "Are you sure you want to be a Unicorn?",
         okButtonText: "Yes",
         cancelButtonText: "No",
         neutralButtonText: "Cancel"
     };
     dialogs.confirm(options).then((result: boolean) => {
         console.log(result);
     });
     // << confirm-dialog-code
 }
开发者ID:aymenbraiek,项目名称:nativescript-sdk-examples-ng,代码行数:14,代码来源:confirm-dialog.component.ts

示例8: onHighScore

 onHighScore(): void {
   this.consoleLogMsg('level-three.component', 'onHighScore');
   Dialogs.confirm({
     title: 'W i n n e r',
     message: 'You solved the puzzle in ' + this.board.moves + ' moves!',
     okButtonText: 'Ok'
   }).then(() => {
     this._router.navigate([
       'add-high-score/:level:moves:caller', {
         moves: this.board.moves,
         level: this.board.level,
         caller: this.board.nextScreen
       }
     ], Config.transition);
   });
 }
开发者ID:bradyhouse,项目名称:house,代码行数:16,代码来源:level-three.component.ts

示例9: onHighScore

 onHighScore(): void {
   Dialogs.confirm({
     title: 'W i n n e r',
     message: 'You solved the puzzle in ' + this.board.moves + ' moves!',
     okButtonText: 'Ok'
   }).then(() => {
     this.isBoardLoaded = false;
     this._stateService.updateLevel(2);
     this._router.navigate([
       'add-high-score/:level:moves:caller', {
         moves: this.board.moves,
         level: this.board.level,
         caller: this.board.nextScreen
       }
     ], Config.transition);
   });
 }
开发者ID:bradyhouse,项目名称:house,代码行数:17,代码来源:level-one.component.ts

示例10: confirm

 public confirm(msg: string): Promise<any> {
   return dialogs.confirm(msg);
 }
开发者ID:Adam-Michalski,项目名称:angular2-seed-advanced,代码行数:3,代码来源:window-native.service.ts


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