我想在datatables
中获取可编辑的行数据,例如,当我点击列时,然后更改数据并获取datatables
中的值。
我使用过这种方法。
editor.on('postEdit', function () {
debugger;
oTable = $('#indexList').dataTable();
var sData = oTable.fnGetData(this.s.editRow);
console.log(sData[0]);
alert('The cell clicked on had the value of ' + sData[0]);
});
答案 0 :(得分:0)
下面的代码会将点击的TR元素转换为一组输入元素,其值来自TD标记
{{1}}