本文整理汇总了TypeScript中nativescript-angular/modal-dialog.ModalDialogService.showModal方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ModalDialogService.showModal方法的具体用法?TypeScript ModalDialogService.showModal怎么用?TypeScript ModalDialogService.showModal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nativescript-angular/modal-dialog.ModalDialogService
的用法示例。
在下文中一共展示了ModalDialogService.showModal方法的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);
});
}
示例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);
});
}
示例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();
});
}