0

smart table当我尝试里面的按钮时,我遇到了一个问题,add即使在event.confirm.reject();看到下面的图片之后,表格仍然存在:

在此处输入图像描述

我所说的表格被框成一个红色矩形

这是我的代码:

组件.html:

<ng2-smart-table [settings]="settings" [source]="source" (createConfirm)="addFuction($event)"></ng2-smart-table>

组件.ts

 addFuction(event) {
   if (window.confirm('Are you sure you want to create?')) {
     event.newData['libelle'] += ' + added in code';
     event.confirm.resolve(event.newData);
   } else {
     console.log('test');
     event.confirm.reject();
   }
}
4

1 回答 1

0

如果您这样认为,这不是错误/错误。

它不会关闭添加/编辑字段,以便用户知道更新/创建不起作用/被取消,并且可以更改输入数据或自己关闭添加/编辑行。

于 2017-12-21T12:18:58.940 回答