data rendering
data rendering

Link to test case:
Debugger code (debug.datatables.net):
Error messages shown:
Description of problem:
I am trying to create one column named <th>Status</th>
, whose value is determined by conditions on other column,
Like
if( data.value1 > 0 & data.value2){
return 'Placed';
}
where value1 , value 2 are from other columns.
Thanks
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You can use
columns.render
for that - the third parameter is the data for the entire row,Colin