在Grid.js中有一个选项"内联编辑";单元格值或实现它们的可能性/插件?
像这样:
- http://tabulator.info/examples/4.9#editable
- https://editor.datatables.net/
您可以将"contenteditable" : "true"
属性(HTML5的一部分(添加到列定义中:
new gridjs.Grid({
columns: [
{ id: 'name',
name: 'Name',
sort: false,
attributes:{
"contenteditable" : "true"
}
},
{ id: 'email',
name: 'Email',
sort: false
},
...
然后,您可以为";输入";事件-当数据发生更改时将触发。