本文整理汇总了TypeScript中nativescript-angular/modal-dialog.ModalDialogService类的典型用法代码示例。如果您正苦于以下问题:TypeScript ModalDialogService类的具体用法?TypeScript ModalDialogService怎么用?TypeScript ModalDialogService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ModalDialogService类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: createModelView
private createModelView(): Promise<any> {
const today = new Date();
const options: ModalDialogOptions = {
viewContainerRef: this.vcRef,
context: today.toDateString(),
fullscreen: false,
};
return this.modalService.showModal(ModalViewComponent, options);
}
开发者ID:KingAndroid,项目名称:nativescript-sdk-examples-ng,代码行数:10,代码来源:sample-modal-page-module-example.ts
示例2: onTap
// >> opening-modal-page
onTap(): void {
const options: ModalDialogOptions = {
viewContainerRef: this._vcRef,
context: {},
fullscreen: true
};
this._modalService.showModal(HomeModalViewComponent, options)
.then((result: string) => {
console.log(result);
});
}
开发者ID:yirony199,项目名称:nativescript-sdk-examples-ng,代码行数:13,代码来源:modal-page-navigation.component.ts
示例3: onRootModalTap
onRootModalTap(): void {
const options: ModalDialogOptions = {
context: {},
fullscreen: true,
viewContainerRef: this._viewContainerRefService.root,
};
this._modalService.showModal(ModalViewComponent, options)
.then((result: string) => {
console.log(result);
});
}
开发者ID:NativeScript,项目名称:nativescript-angular,代码行数:12,代码来源:modal-shared-second.component.ts
示例4: show
public show(fullscreen: boolean) {
if (this.searchText.trim().length < 3) {
alert("minimum 3 characters required.");
return;
}
var options: ModalDialogOptions = {
context: { promptMsg: "find particulars" },
fullscreen: true
};
this.modalService.showModal(DialogContent, options)
.then((dialogResult: Array<FilterCategory>) => {
this.filters = dialogResult;
this.searchItem();
});
}
开发者ID:thakurarun,项目名称:listdown,代码行数:15,代码来源:search.component.ts
注:本文中的nativescript-angular/modal-dialog.ModalDialogService类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论