将数据从弹出窗口发送到网格Angular 2?

时间:2017-08-29 08:46:37

标签: javascript angular typescript

我正在使用模块化窗口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();
}

1 个答案:

答案 0 :(得分:0)

使用双向绑定或使用 LocalStorage