0

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

4

2 回答 2

0

您可以使用下面的代码来做到这一点。

actions: { add: true, edit: true, delete: false, position: 'right' },
columns: {
       columnname: {
                title: 'Column Name',
                type: 'string',
                editable: true
       }
}
于 2018-07-27T13:15:21.103 回答
0

您可以通过设置editable:True来设置

actions: actions,
     Yourcolumns: {
      YourColumnName: {
        title: 'Name',
        filter:true,
        editable:True,
        type:'html'

     }}
于 2018-07-13T14:30:51.140 回答