我正在使用datatables jquery插件。现在我需要在加载ajax后更改第2列的值。但不幸的是我的代码不起作用。我无法在手动和互联网上找到解决方案。下面是我的工作方式:
var productTable = $("#productTable").dataTable({
bSort: true,
bLengthChange: false,
bPaginate: true,
sAjaxSource: '/getAll',
columns: [
{"data": "DT_RowId"},
{
"render": function (data, type, full, meta) {
var desc = full.value;
return '<span class="smallDesc">' + desc + '</span>';
}
}],
"fnInitComplete": function (oSettings, json) {
var api = this.api();
api.cell("#20300006", 0).data('newData'); // it works
api.cell("#20300006", 1).data('newData2'); //dosen't works
api.draw();
});