【发布时间】:2019-06-22 10:56:01
【问题描述】:
我尝试使用 PrimeNg TabView 组件和 confirmDialog 失败,这是我的代码:
<p-tabView (onChange)="onTabChange($event)" [(activeIndex)]="index">...</p-tabView>
onTabChange(event){
this.confirmationService.confirm({
message: 'Do you confirm ?',
accept: () => {
this.index = event.index;
},
reject:() =>{ }
});
}
您知道如何使用确认对话框来防止或允许标签更改吗?
谢谢
【问题讨论】:
标签: javascript angular typescript primeng tabview