问题
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?
来源:https://stackoverflow.com/questions/47548303/how-to-change-the-value-of-a-cell-in-datatables-net