我想管理我的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");}
我可以添加新按钮并管理您的行为,如果我可以订阅该活动以及如何操作我想知道的任何方式
答案 0 :(得分:1)
这是因为ng2-smart-table需要在其设置中修改模式值
settings = {
actions: {
columnTitle: 'Actions'
},
mode: 'external',