update body()
update body()
Instead of update footer I want to update cells in column 8, where that column is ->
{ data: null, defaultContent:'', orderable: false}, greatly appreciate the help :)
$( api.column(8).footer() ).html(
'$'+ number_format(totes,2)
);
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Hi,
Use the API if you want to update data in the table. Specifically
row().data()
andcell().data()
.Allan