This question already has an answer here:
I was trying to change a value of cell inside a table with datatables plugin. I tried below codes but it changed the whole row value.
var tbl = $('#tbl1').DataTable();
tbl[ 0 ].row( 0 ).data("new value").draw();
I only want to change a cell from a specific column. How will I include the column index in the code?