Table column calculation
Table column calculation
ergun
Posts: 12Questions: 3Answers: 0
Hello everyone, I have not found on the site how to add a Z column in my table that displays the following result column value x * y column .
example: column x = 10, y = 20, so column Z = 200
Someone would have a solution?
Thank you .
This discussion has been closed.
Replies
I solved my problem .
{ data: null, render: function ( data, type, row ) {
var total = (data.ingesta.qtte*data.ali.cal_ali)
return total;
} },
Yes - you would use
columns.render
.Allan