我正在使用模块化窗口Angular。为了更改我表中的数据。如何关闭数据保持不变的事件将如何发生。如果出现问题,数据以及现在的数据都会转移到表格中?这是我的代码:
父
modalRef.result.then((data) => {
this.gridOptions.api.refreshView();
});
}
弹出
saveEntity(): void {
if (this.RoleId.WorkedYears <= 0) {
this.toastr.error('Please enter positive number');
}
else {
this.RoleId.WorkedYears = this.RoleId.WorkedYears
this.activeModal.close();
}
}
close(): void {
this.activeModal.dismiss();
}
答案 0 :(得分:0)
使用双向绑定或使用 LocalStorage 。