0

我想管理我的 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");}

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

4

1 回答 1

1

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

settings = {
actions: {
  columnTitle: 'Actions'
},
mode: 'external',
于 2017-11-29T01:52:30.667 回答