单击编辑ng2智能表时的空列值

时间:2020-09-25 11:55:26

标签: javascript angular passwords angular6 ng2-smart-table

我已使用ng2智能表显示用户列表和密码。当他们尝试更新密码时,我需要在密码栏中显示为空。这意味着单击编辑后将显示空列值。 我尝试使用(edit)函数添加event.password =“”,但问题是,如果我添加(edit)并更改模式:“外部”我的其他自定义函数(如(createConfirm),(deleteConfirm))不起作用完全没有。

<ng2-smart-table class="table table-hover" id="tbl" [settings]="settings" [source]="source" (edit)="onEditRowSelect($event)" (createConfirm)="onCreateConfirm($event)" (deleteConfirm)="onDeleteConfirm($event)"  (editConfirm)="onSaveConfirm($event)" >        
        </ng2-smart-table>

settings = {
     actions: {
       add: true,
       edit: true,
       delete: true
     },
     mode: 'external',
     columns: {
       user: {
       ....
       },
       password: {
       ....
       }
    }

有人可以建议在编辑列时显示空值的方法吗?请帮助我摆脱这个问题。

0 个答案:

没有答案