我使用的是ng2-smart-table组件,但找不到一个设置可编辑单元格的选项,例如本例(http://akveo.com/blur-admin/#/tables/smart表marek为“ EDITABLE CELLS”) 请帮帮我-我可以分别在ng2-smart-table中编辑每个单元格吗 谢谢!
答案 0 :(得分:0)
您可以通过设置 editable:True
进行设置actions: actions,
Yourcolumns: {
YourColumnName: {
title: 'Name',
filter:true,
editable:True,
type:'html'
}}
答案 1 :(得分:0)
您可以使用以下代码来实现。
actions: { add: true, edit: true, delete: false, position: 'right' },
columns: {
columnname: {
title: 'Column Name',
type: 'string',
editable: true
}
}