ng2-smart-table 订阅编辑

ng2-smart-table subscribe edit

我想管理我的 ng2-smart-table 的编辑功能,但是这段代码对我不起作用,我有什么问题吗?

HTML

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

组件

onEdit(event:any):void{
console.log("edit model");}

我可以添加新按钮并管理您的行为,我想知道我是否可以订阅该事件以及如何订阅的任何方式

发生这种情况是因为 ng2-smart-table 需要在其设置中修改模式值

settings = {
actions: {
  columnTitle: 'Actions'
},
mode: 'external',