如何在ng2-smart-table中设置可编辑单元格?

时间:2018-07-13 08:38:53

标签: angular ng2-smart-table

我使用的是ng2-smart-table组件,但找不到一个设置可编辑单元格的选项,例如本例(http://akveo.com/blur-admin/#/tables/smart表marek为“ EDITABLE CELLS”) 请帮帮我-我可以分别在ng2-smart-table中编辑每个单元格吗 谢谢!

2 个答案:

答案 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
       }
}