-1
我想獲得datatables
中的可編輯行數據,例如當我單擊列時,然後更改數據並獲取datatables
中的值。使用jQuery獲取數據表中的可編輯行數據
我已經使用這種方法。
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]);
});